body {
    font-family: 'Geist', sans-serif;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    overflow-x: hidden;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.animate-fadeOut {
    animation: fadeOut 1s ease-in-out forwards;
}


.img-hover-zoom {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-hover-zoom:hover {
    transform: scale(1.05);
}

.btn-red-900 {
    background-color: #7f1d1d; /* bg-red-900 */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-red-900:hover {
    background-color: #ef4444; /* hover:bg-red-500 */
    color: white;
}

#notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.duration-300 {
    transition-duration: 300ms;
}

#scrollToTop {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop:hover {
    transform: scale(1.1);
    background-color: #7f1d1d; 
}

.nav-custom-link.active {
    color: #dc2626 !important; 
    font-weight: 600;
}

.nav-custom-link:hover {
    color: #dc2626 !important; 
    transition: color 0.3s ease;
}

.navbar-nav .nav-custom-link.text-white:hover {
    color: #dc2626 !important;
}

.form-control.is-invalid {
    border-color: #dc2626;
}

.form-control.is-invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-control.is-valid {
    border-color: #16a34a;
}

.form-control.is-valid:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
}

.info-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.info-extra.expanded {
    max-height: 1000px;
}

.info-short {
    transition: opacity 0.4s ease-in-out;
}

.info-short.hidden {
    opacity: 0;
    display: none;
}

.responsive-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.form-control, .form-select {
    background-color: #ffffff;
    color: #000000;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.15rem rgba(124, 58, 58, 0.15);
    border-color: #7f1d1d;
}

.btn-info-custom {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: 2px solid #dc2626;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-info-custom:hover {
    background: linear-gradient(135deg, #991b1b, #dc2626);
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    color: #ffffff;
}

.form-shadow-red {
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25) !important;
}

/* Reemplazo de estilos inline */

/* Header height */
.header-fixed {
    height: 80px;
}

/* Logo image size */
.logo-img {
    width: 48px;
    height: 48px;
}

/* Brand span serif font */
.brand-text {
    font-family: serif;
}

/* Scroll to top button size */
.scroll-btn-size {
    z-index: 1000;
    width: 50px;
    height: 50px;
}

/* Spacer for header */
.header-spacer {
    height: 80px;
}

/* Section intro paragraph max-width */
.intro-text {
    max-width: 800px;
}

/* Video height and object-fit */
.video-carousel {
    height: 500px;
    object-fit: cover;
}

.video-medium {
    height: 500px;
    object-fit: contain;
}

.video-large {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* Section titles dark red color */
.title-dark-red {
    color: #7f1d1d;
}

/* Link color red */
.link-red {
    color: #dc2626;
    text-decoration: none;
}

.link-red:hover {
    color: #ef4444;
}

/* Instagram footer gradient */
.footer-instagram-gradient {
    background: linear-gradient(to top right, black, #dc2626);
}

/* Footer background */
.footer-bg {
    background-color: #181818;
}

@media (max-width: 768px) {
    .responsive-image {
        max-width: 100%;
        padding: 0 10px;
    }
    
    header {
        height: 70px !important;
    }
    
    .nav-link {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.9rem !important;
    }
}