/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
    --primary: #525252;
    --secondary: #525252;
    --accent: #525252;
    --dark: #1A1A1A;
    --light: #fff;
    --text: #525252;
    --highlight: #525252;
    --radius-md: 5px;
    --font-title: 'Lato', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
}
.faq-item{
    border:1px solid var(--accent) !important;
}
body{
    opacity: 0;
        transition-duration: 2s;
            transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
/* ========================================
   ESTILOS GENERALES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    width: 100%; 
}



.header {
    background-color: white !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.navbar {
    padding: .5rem 0;
    transition: var(--transition);
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: black;
    font-weight: 700;
    transition: var(--transition);
}
/* .header.scrolled .brand-name {
    color: white !important;
}
.header.scrolled .nav-link {
    color: white !important;
} */
.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: black;
    font-weight: 600;
    padding: 1rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Glass Effect cuando hace scroll */
.header.scrolled {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
}

.header.scrolled .brand-name {
    color: var(--primary);
}

.header.scrolled .nav-link {
    color: var(--text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-brand img{height: 60px;}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 61, 61, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 61, 61, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        color: var(--text);
    }
}


/* ========================================
   BUTTONS PREMIUM
   ======================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 3.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid;
    text-decoration: none;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

/* White Filled con efecto slide */
.btn-white-filled {
    background-color: white;
    color: var(--dark);
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white-filled::before {
    background-color: transparent;
    left: 0;
}

.btn-white-filled::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-white-filled:hover {
    color: white;
    background-color: transparent;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-white-filled:hover::after {
    width: 300px;
    height: 300px;
}

/* White Outline con efecto desde abajo */
.btn-white-outline {
    background-color: transparent;
    color: white;
    border-color: white;
    box-shadow: inset 0 0 0 0 white;
}

.btn-white-outline::before {
    background-color: white;
    left: -100%;
    top: auto;
    bottom: 0;
    height: 3px;
}

.btn-white-outline:hover {
    color: var(--dark);
    box-shadow: inset 0 -100px 0 0 white;
    transform: translateY(-2px);
}

.btn-white-outline:hover::before {
    left: 0;
}

/* Dark Filled con efecto clip */
.btn-dark-filled {
    background-color: var(--dark);
    color: white;
    border-color: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn-dark-filled::before {
    background-color: white;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    left: 0;
}

.btn-dark-filled:hover {
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-dark-filled:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Dark Outline con border animation */
.btn-dark-outline {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--dark);
    background: linear-gradient(90deg, var(--dark) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
}

.btn-dark-outline::before {
    display: none;
}

.btn-dark-outline:hover {
    color: white;
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Accent Button con glow effect */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    color: white;
    border-color: var(--accent);
    position: relative;
    box-shadow: 0 0 20px rgba(198, 123, 92, 0.3);
}

.btn-accent::before {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--accent) 100%);
    left: 0;
    opacity: 0;
}

.btn-accent:hover {
    color: white;
    box-shadow: 0 0 40px rgba(198, 123, 92, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.btn-accent:hover::before {
    opacity: 1;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-glass::before {
    background: rgba(255, 255, 255, 0.2);
    left: 0;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Sizes */
.btn-large {
    padding: 1.3rem 4rem;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.btn-small {
    padding: 0.8rem 2.2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Icon Button */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(5px);
}

/* Active state */
.btn:active {
    transform: scale(0.98);
}


/* ========================================
   FOOTER ANIMADO
   ======================================== */
.footer {
    background-color: var(--light);
    color: var(--text);
    padding: 5rem 0 0;
    margin-top: 0rem;
    position: relative;
    overflow: hidden;
}

/* Wave animada en la parte superior */
.wave-container {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 550px;
}

.wave path {
    fill: #ffffff;
    animation: wave-animation 10s ease-in-out infinite alternate;
}

@keyframes wave-animation {
    0% {
        d: path("M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z");
    }

    100% {
        d: path("M321.39,70c58-10.79,114.16-25,172-35,82.39-14,168.19-20,250.45-10C823.78,40,906.67,60,985.66,80c70.05,15,146.53,20,214.34,8V0H0V40A600.21,600.21,0,0,0,321.39,70Z");
    }
}

/* Formas flotantes animadas */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--highlight) 0%, transparent 70%);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text);
}

.footer-location i {
    color: var(--accent);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(44, 62, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    background-color: transparent;
}

.social-icon:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.footer-copyright,
.footer-credits {
    font-size: 0.85rem;
    color: rgba(61, 61, 61, 0.6);
    margin: 0;
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 0 0;
        margin-top: 5rem;
    }

    .wave-container {
        top: -50px;
    }

    .wave {
        height: 100px;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-bottom {
        margin-top: 3rem;
    }

    .shape {
        display: none;
    }
}



/* Los contenedores de imagen ya no necesitan animación individual */
.hero-image-container {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.hero-home-gsap {
    position: relative;
    width: 100%;
    padding: 0px;
    padding-top: 0px;
    min-height: 350vh;
    overflow: hidden;
}

.hero-sticky {
    position: relative;
    width: 100%;
    height: 200vh;
    /* Para crear el scroll */
}

/* Video con máscara */
.hero-mask {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    clip-path: inset(0px 0px round 0px);
    will-change: clip-path;
}

.hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(1);
    will-change: transform;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 120%;
    top: 45%;
    object-fit: cover;
}

/* Contenido sobre el video */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    width: 100%;
    height: auto;
    text-align: center;
}



/* Grid de 3 columnas */
.hero-grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: end;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    height: calc(100% - 40px);
    padding: 2rem;
    align-items: end;
}

.hero-col {
    position: relative;
    height: 100%;
}

/* Columna central dummy */
.hero-dummy-background {
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Contenedores de imágenes */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-image-container.leftcol picture:nth-child(1) {
    width: 100%;
    top: 25px;
}

.hero-image-container.leftcol picture:nth-child(2) {
    width: calc(90% - 35px);
    right: 0;
    float: right;
}

.hero-image-container.rightcol picture:nth-child(2) {
    width: 90%
}

.hero-image-container.rightcol picture:nth-child(1) {
    width: calc(90% - 35px);
    left: 0;
    float: left;
    margin-bottom: 15px;
}

.hero-image-container picture {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 5px;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-overlay {
    opacity: 1;
}

.hero-overlay-content {
    color: white;
}

.hero-overlay-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-overlay-content hr {
    border-color: white;
    margin: 1rem 0;
}

.hero-overlay-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

h2.section-title{
    font-size: 5rem;
}
video {
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 1;
    background-size: cover;
}


.section-mod {
    padding: 8rem 0;
    overflow: hidden;
}

.marquee-section {
    display: flex;
    flex-direction: column;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    will-change: transform;
}

.marquee-text {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(44, 62, 80, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 2rem;
    margin: 0;
}

.marquee-2 {
    transform: translateX(-20%);
}

.drop_cap {
    letter-spacing: -.1rem;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-title);
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-200 {
    margin-bottom: 200px;
}

.mb-210 {
    margin-bottom: 210px;
}

.mb-220 {
    margin-bottom: 220px;
}

.pictureNick {
    position: relative;
    /* overflow: hidden;  */
    height: 100%;
}

.pictureNick img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scale(1.1);
}

.section-marquee {
    min-height: 100vh
}

.lineParent {
    overflow: hidden;
    position: relative
}


 /* ========================================
   CV SECTION - EXHIBITIONS, STUDIES, GRANTS
   ======================================== */

 .cv-section {
     background-color: var(--light);
     min-height: 300vh
 }

 /* Un solo UL con flexbox */
 .cv-list {
     display: flex;
     gap: 10px;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 /* Caja del título con color pastel - ocupa todo el ancho */
 .cv-title-box {
     background: var(--accent);
     border-radius: 5px;
     padding: 40px;
     transition: var(--transition);
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white !important;
     min-width: 30%;
     transform: translateY(0px);
 }

 .cv-title-box:first-child {
     margin-top: 0;
 }

 .cv-title-box:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .cv-title-box h2 {
     font-family: var(--font-title);
     font-size: 1.8rem;
     font-weight: 600;
     color: var(--dark);
     margin: 0;
     letter-spacing: 1px;
 }

 /* Items individuales */
 .cv-item span {
     display: block;
     font-size: 2rem;
     font-weight: 600;
     color: var(--accent);
     margin-bottom: 1rem;
 }

 .cv-item {
     background-color: white;
     border: 1px solid #eee;
     border-radius: 5px;
     padding: 80px 50px;
     min-width: 30%;
     font-size: 1.6rem;
     line-height: 1.2;
     color: var(--text);
     transition: var(--transition);
     min-height: 50vh;
 }

 .cv-item:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-color: var(--accent);
 }

 /* Marquee izquierda usando ::before */
 .cv-title-box::before {
     content: attr(data-title);
     position: absolute;
     top: 0;
     left: 0;
     font-family: var(--font-title);
     font-size: 9rem;
     font-weight: 700;
     color: rgba(255, 255, 255, 0.1);
     white-space: nowrap;
     animation: marquee-left 20s linear infinite;
     z-index: 2;
     line-height: 1
 }

 /* Marquee derecha usando ::after */
 .cv-title-box::after {
     content: attr(data-title);
     position: absolute;
     bottom: 0;
     right: 0;
     font-family: var(--font-title);
     font-size: 9rem;
     font-weight: 700;
     color: rgba(255, 255, 255, 0.1);
     white-space: nowrap;
     animation: marquee-right 20s linear infinite !important;
     z-index: 2;
     line-height: 1
 }

 /* Animaciones */
 @keyframes marquee-left {
     0% {
         left: 100%;
     }

     100% {
         left: -100%;
     }
 }

 @keyframes marquee-right {
     0% {
         right: 100%;
     }

     100% {
         right: -100%;
     }
 }






  .store-section {
      background-color: var(--light);
  }

  .section-title {
      font-family: var(--font-title);
      font-size: 3rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 3rem;
  }

  .store {
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      list-style: none;
      margin: 0;
      gap: 10px;
  }

  .store li {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      width: calc(33.33% - 7px);
      transition: var(--transition);
  }

  .store li a {
      display: block;
      position: relative;
      text-decoration: none;
      color: var(--text);
  }

  .store li img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
  }

  /* Overlay con información del producto */
  .store li .product-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
      padding: 2rem;
      transform: translateY(100%);
      transition: transform 0.4s ease;
  }

  .store li:hover .product-info {
      transform: translateY(0);
  }

  .store li:hover img {
      transform: scale(1.05);
  }

  .product-info .product-title {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 400;
      color: white;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
  }

  .product-info .product-price {
      font-family: var(--font-title);
      font-size: 1.3rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 1rem 0;
  }

  .product-info .add-to-cart {
      display: inline-block;
      padding: 0.8rem 2rem;
      background-color: white;
      color: var(--dark);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-radius: 3px;
      transition: var(--transition);
  }

  .product-info .add-to-cart:hover {
      background-color: var(--accent);
      color: white;
      transform: translateY(-2px);
  }

  /* Dropdown Menu Styles - Hover con suavidad */
  .navbar-nav .dropdown-hover {
      position: relative;
  }

  .navbar-nav .dropdown-menu {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: var(--radius-md);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      margin-top: 0rem;
      min-width: 220px;

      /* Transiciones suaves */
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      display: block !important;
  }

  /* Mostrar dropdown en hover */
  .navbar-nav .dropdown-hover:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
  }

  .navbar-nav .dropdown-item {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding: 0.75rem 1.5rem;
      color: var(--text);
      position: relative;
      overflow: hidden;

      /* Transición suave para el item */
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Efecto de hover en los items */
  .navbar-nav .dropdown-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: var(--accent);
      transform: scaleY(0);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-nav .dropdown-item:hover::before,
  .navbar-nav .dropdown-item.active::before {
      transform: scaleY(1);
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item.active {
      background: var(--light);
      color: var(--accent);
      padding-left: 2rem;
  }

  /* Animación del icono dropdown */
  .dropdown-toggle::after {
      display: block;
transform: translateX(-50%) !important;
      margin-left: 0 !important;
      vertical-align: 0 !important;
      content: "";
      opacity: 0;
      border-top: .0em solid;
      border-right: .0em solid transparent;
      border-bottom: 0;
      border-left: .0em solid transparent;
  }

  .navbar-nav .dropdown-hover:hover .dropdown-toggle::after {
      transform: rotate(0deg) !important;
  }

  /* Header scrolled state */
  .header.scrolled .dropdown-menu {
      background: rgba(255, 255, 255, 0.95);
  }

  /* Animación escalonada de los items del dropdown */
  .navbar-nav .dropdown-menu .dropdown-item:nth-child(1) {
      transition-delay: 0.05s;
  }

  .navbar-nav .dropdown-menu .dropdown-item:nth-child(2) {
      transition-delay: 0.1s;
  }

  .navbar-nav .dropdown-menu .dropdown-item:nth-child(3) {
      transition-delay: 0.15s;
  }

  .navbar-nav .dropdown-hover:hover .dropdown-item {
      opacity: 1;
      transform: translateX(0);
  }

  .navbar-nav .dropdown-item {
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-nav .dropdown-hover:hover .dropdown-item {
      opacity: 1;
      transform: translateX(0);
  }

  /* Responsive - Mobile */
  @media (max-width: 991px) {

      /* En mobile, volver al click tradicional */
      .navbar-nav .dropdown-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
          position: static;
          background: transparent;
          border: none;
          box-shadow: none;
          padding-left: 1rem;
          margin-top: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          padding: 0;
      }

      .navbar-nav .dropdown-hover.show .dropdown-menu {
          max-height: 300px;
      }

      .navbar-nav .dropdown-item {
          padding: 0.5rem 1rem;
          opacity: 1;
          transform: translateX(0);
      }

      .navbar-nav .dropdown-item:hover,
      .navbar-nav .dropdown-item.active {
          padding-left: 1.5rem;
      }

      .navbar-nav .dropdown-item::before {
          display: none;
      }
  }
  /* 📱 Teléfonos (ej. iPhone 6, 7, 8) */
  @media (max-width: 480px) and (min-width: 320px) {
    .mobile-off{
        display: none !important;
    }
    body .ctalist{
            flex-direction: column; 
    }
    .nav-link::after{
        opacity: 0 !important;
    }
  }