* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
}

.menu__logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu__logo img {
    height: 75px;
    width: auto;
    border-radius: 50%;
}

.menu__icon {
    width: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    z-index: 1001;
}

.menu__icon span {
    display: block;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.menu__icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu__icon.open span:nth-child(2) {
    opacity: 0;
}

.menu__icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.menu__links.active {
    right: 0;
}

.menu__links ul {
    list-style: none;
    text-align: center;
}

.menu__links li {
    margin: 20px 0;
}

.menu__links a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.menu__links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00c5b9;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.menu__links a:hover::after {
    width: 100%;
}


/* TEXTO ANIMATION */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}





.glow-text {
    margin-top: clamp(60px, 15vh, 120px);
    margin-bottom: clamp(40px, 10vh, 90px);


    font-size: clamp(1.6rem, 4.5vw + 1rem, 4rem);

    font-weight: 500;
    letter-spacing: -0.015em;
    color: #ffffff;
    filter: brightness(1.1);
    z-index: 1;
    text-align: center;
    margin-bottom: 20px !important;

}


.glow-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00cfff, #a600ff, #ff006e, #ff8800);
    filter: blur(20px) brightness(0.8);
    opacity: 0.7;
    border-radius: 100px;
    z-index: -1;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

.glow-text::after {
    position: absolute;
    inset: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    background: linear-gradient(90deg, #00cfff, #a600ff, #ff006e, #ff8800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: color-burn;
    filter: blur(3px) brightness(1.3);
    z-index: 0;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes softGlow {
    0% {
        text-shadow: 0 0 8px rgba(255, 102, 196, 0.6),
            0 0 15px rgba(192, 132, 252, 0.4);
    }

    100% {
        text-shadow: 0 0 15px rgba(126, 232, 250, 0.7),
            0 0 25px rgba(255, 182, 222, 0.5);
    }
}



/* SLIDER */


.slider-envuelto {
    position: relative;
    /* para que overflow:hidden recorte sus hijos */
    overflow: hidden;
    /* recorta cualquier desbordamiento */
    /* width: 100vw; */
    /* forzar ancho completo, sin “100%” que a veces compensa padding/márgenes */
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;

}



.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 80px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.card.center img {
    filter: none;
}

.card.left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.left-2 img {
    filter: grayscale(100%);
}

.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.left-1 img {
    filter: grayscale(100%);
}

.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.right-1 img {
    filter: grayscale(100%);
}

.card.right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.right-2 img {
    filter: grayscale(100%);
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.member-info {
    text-align: center;
    margin-top: 40px;
    transition: all 0.5s ease-out;
}

.member-name {
    color: rgb(8, 42, 123);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.member-name::before,
.member-name::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100px;
    height: 2px;
    background: rgb(8, 42, 123);
}

.member-name::before {
    left: -120px;
}

.member-name::after {
    right: -120px;
}

.member-role {
    color: #848696;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin-top: -15px;
    position: relative;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(8, 42, 123, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgb(8, 42, 123);
    transform: scale(1.2);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 42, 123, 0.6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
    padding-bottom: 4px;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: 20px;
    padding-right: 3px;
}

.nav-arrow.right {
    right: 20px;
    padding-left: 3px;
}

@media (max-width: 768px) {

    .card {
        width: 200px;
        height: 280px;
    }

    .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }

    .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }

    .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }

    .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }

    .member-name {
        font-size: 2rem;
    }

    .member-role {
        font-size: 1.2rem;
    }

    .member-name::before,
    .member-name::after {
        width: 50px;
    }

    .member-name::before {
        left: -70px;
    }

    .member-name::after {
        right: -70px;
    }
}


/*DESCRIPCION DEL PRODUCTO*/

.producto-descripcion {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    margin-top: 100px;
}

.producto-descripcion h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.producto-descripcion h2 {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: normal;
}

.producto-descripcion p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/*PRODUCTOS DETALLADOS*/

.producto-detalles {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    padding: 2rem;
    margin-top: 50px;
}

.detalles-section {
    margin-bottom: 2rem;
}

.detalles-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

/* Talles visuales */
.talles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.talle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f8ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.talle:hover {
    background: #007bff;
    color: white;
}

/* Materiales */
.materiales {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Beneficios con íconos */
.beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.beneficio {
    flex: 1 1 180px;
    background: #f0f8ff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.beneficio i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.beneficio p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}



/*RESPONSIVE*/



@media (max-width: 600px) {
    .producto-descripcion {
        padding: 1.5rem;
    }

    .producto-descripcion h1 {
        font-size: 1.5rem;
    }

    .producto-descripcion p {
        font-size: 0.95rem;
    }

    .talle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .beneficio {
        flex: 1 1 100%;
    }
}
