/* RESET Y GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amarillo: #FFDB00;
    --negro: #1a1a1a;
    --gris-texto: #555;
    --gris-claro: #f5f5f5;
    --degradado: linear-gradient(135deg, #ffb6c1, #d8b4fe);
    --fondo-oscuro: #2a2a2a;
    --fondo-beige: #f0ede6;
}

body {
    font-family: 'Robot', sans-serif;
    color: var(--negro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* img {
    max-width: 100%;
    display: block;
} */

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amarillo);
    color: var(--negro);
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 0, 0.3);
}

.btn-pill svg {
    width: 20px;
    height: 20px;
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-card {

    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 570px;
    height: 25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);


}

.hero-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-title strong {
    font-weight: 800;
}

.hero-text {
    font-size: 16px;
    color: var(--gris-texto);
    line-height: 28px;
}

.hero-text strong {
    font-weight: 700;
    color: var(--negro);
}

/* TICKER BANNER */
.ticker-wrapper {
    background: var(--degradado);
    overflow: hidden;
    padding: 16px 0;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker 0s linear infinite;
    width: fit-content;
    will-change: transform;
}

.ticker-item {
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 60px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECCIÓN TIENDAS */
.seccion-tiendas {
    position: relative;
    padding: 80px 40px;
    background: #f6f6f6;
    background-image: url("https://offcorss.vtexassets.com/assets/vtex.file-manager-graphql/images/d8e654ad-3be1-410b-9cb4-910e32ee849a___cc0c23dec1285b93b9ba45abea60edaa.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* .seccion-tiendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--degradado);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
} */

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    position: relative;
}

.section-title strong {
    font-weight: 800;
}

.tiendas-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tienda-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tienda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tienda-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gris-texto);
}

.tienda-nombre {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--negro);
}

.tienda-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gris-texto);
    margin-bottom: 12px;
}

.tienda-info svg {
    width: 16px;
    height: 16px;
    fill: var(--gris-texto);
    flex-shrink: 0;
}

.btn-small {
    margin-top: 16px;
    font-size: 13px;
}

/* SECCIÓN MODA */
.seccion-moda {
    padding: 80px 40px;
    background: white;
}

.moda-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: start;
}

.moda-imagenes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.moda-img {
    width: 100%;
    /* border-radius: 12px; */
    object-fit: cover;
}

.moda-contenido {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.moda-texto {
    text-align: center;
}

.moda-descripcion {
    max-width: 565px;
    margin: 0 auto;
    color: var(--gris-texto);
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: justify;
}

.moda-features {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    height: 825px;
    max-height: 825px;
}

.features-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
}

.features-icons {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-label {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* BANNER ADELÁNTATE */
.banner-adelantate {
    background: var(--fondo-oscuro);
    padding: 32px 60px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-title {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-subtitle {
    color: #bbb;
    font-size: 15px;
    line-height: 1.5;
    max-width: 600px;
}

.btn-vip {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 14px 32px;
    white-space: nowrap;
}

/* SECCIÓN CONSCIENTE */
.seccion-consciente {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.consciente-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consciente-overlay {
    position: absolute;
    top: 50%;
    right: 14%;
    transform: translateY(-50%);
    /* text-align: right; */
}

.consciente-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--negro);
}

.consciente-title strong {
    font-weight: 800;
}

.productos-conscientes {
    display: flex;
    gap: 45px;
    /* justify-content: flex-end; */
}

.producto-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.producto-badge {
    position: absolute;
    /* top: -8px; */
    right: 0px;
    background: var(--negro);
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.producto-badge:hover {
    transform: scale(1.1);
    background: #333;
}

.producto-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--negro);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 100;
}

.producto-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.producto-tooltip strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.producto-tooltip p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.producto-badge:hover .producto-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.producto-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.producto-label {
    margin-top: 12px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--negro);
    letter-spacing: 0.5px;
    max-width: 109px;
}

/* SECCIÓN LOOKS */
.seccion-looks {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.seccion-looks .section-title {
    padding: 0 40px;
    font-size: 30px;
}

.looks-carrusel-wrapper {
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}

.looks-galeria {
    display: flex;
    gap: 5px;
    animation: carruselLooks 25s linear infinite;
    width: fit-content;
    will-change: transform;
}

.looks-galeria:hover {
    animation-play-state: paused;
}

 .look-link {
    display: block;
    flex-shrink: 0;
    cursor: pointer;
    /* transition: opacity 0.3s; */
}

.look-link:hover {
    opacity: 0.9;
} 

.look-img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    /* border-radius: 12px; */
    flex-shrink: 0;
    display: block;
}

@keyframes carruselLooks {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECCIÓN HISTORIA */
.seccion-historia {
    padding: 80px 60px;
    background: white;
}

.seccion-historia .section-title {
    font-size: 36px;
    margin-bottom: 60px;
}

.historia-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 135px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 80px 30px 1fr;
    align-items: start;
    gap: 0;
}

.timeline-year {
    font-size: 48px;
    font-weight: 300;
    color: #ddd;
    text-align: right;
    padding-right: 10px;
    line-height: 1;
}

.timeline-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--negro);
    margin-top: 18px;
    margin-left: 50px;
    z-index: 10;
}

.timeline-text {
    font-size: 22px;
    color: var(--negro);
    line-height: 1.5;
    padding-left: 50px;
    padding-top: 5px;
    font-weight: 300;
}

.historia-imagen {
    height: 100%;
    display: flex;
    align-items: center;
}

.historia-img {
    width: 100%;
    height: 53rem;
    object-fit: cover;
    border-radius: 16px;
}

/* SECCIÓN ESPERA */
.seccion-espera {
    background: var(--fondo-beige);
    padding: 60px 40px;
}

.espera-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.espera-col {
    height: 100%;
}

.espera-col-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.espera-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.espera-centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 40px 30px;
    max-width: 100%;
    width: 100%;
}

.espera-titulo {
    font-size: 24px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.espera-subtitulo {
    font-size: 14px;
    color: var(--gris-texto);
    margin-bottom: 8px;
}

.pill-redes {
    background: var(--amarillo);
    color: var(--negro);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.redes-iconos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.red-icono {
    width: 60px;
    height: 60px;
    display: block;
    transition: opacity 0.2s;
}

.red-icono:hover {
    opacity: 0.75;
}

.red-icono svg {
    width: 100%;
    height: 100%;
}

/* FOOTER */
/* ========================================
   11. FOOTER
   ======================================== */
.footer {
    background: var(--negro);
    padding: 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-label {
    color: white;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.footer-tiendas {
    display: flex;
    gap: 60px;
}

.footer-tienda {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-tienda-nombre {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.footer-tienda-telefono {
    color: #bbb;
    font-size: 14px;
    font-weight: 400;
}

.footer-iconos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-icono {
    width: 40px;
    height: 40px;
    display: block;
    transition: opacity 0.2s;
}

.footer-icono:hover {
    opacity: 0.75;
}

.footer-icono svg {
    width: 100%;
    height: 100%;
}

.seccion-video {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #E8DED3;
}

.video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }

    .hero-bg {
        height: 70%;

    }

    .moda-img-girl {
        display: none;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .btn-pill {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-card {
        top: 68%;
        width: 90%;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .tiendas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .moda-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .features-icons {
        right: 15px;
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-label {
        font-size: 10px;
        padding: 6px 12px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .consciente-overlay {
        right: 50%;
        transform: translate(50%, -50%);
        text-align: center;
        width: 100%;
    }

    .consciente-title {
        font-size: 30px;
    }

    .productos-conscientes {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .producto-img {
        width: 100px;
        height: 100px;
    }

    .looks-galeria {
        flex-direction: row;
        gap: 8px;
    }

    .historia-container {
        grid-template-columns: 1fr;
        gap: 40px;
        /* padding: 0 20px; */
    }

    .timeline {
        padding-left: 80px;
    }

    .timeline::before {
        left: 126px;
    }

    .timeline-year {
        font-size: 32px;
        width: 50px;
        left: -41px;
        top: 12px;
        position: relative;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        margin-left: -40px;
    }

    .historia-img {
        display: none;
    }

    .espera-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }

    .espera-col-stack {
        flex-direction: row;
        gap: 16px;
    }

    .espera-col-stack .espera-img {
        width: 50%;
    }

    .espera-centro {
        padding: 30px 20px;
        width: 100%;
        order: -1;
    }

    .espera-titulo {
        font-size: 22px;
        line-height: 1.3;
    }

    .espera-subtitulo {
        font-size: 13px;
    }

    .pill-redes {
        font-size: 13px;
        padding: 6px 16px;
    }

    .redes-iconos {
        gap: 12px;
    }

    .red-icono {
        width: 50px;
        height: 50px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-tiendas {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-iconos {
        justify-content: center;
    }

    .timeline-text {
        position: relative;
        right: 70px;
    }

    .video-container {
        max-width: 100%;
    }
    
    .espera-col-img {
        display: none;
    }

    .moda-features{
        height: auto;
    }

    .features-bg{
        height: auto;
    }
}

@media (max-width: 560px) {

    .seccion-tiendas,
    .seccion-moda,
    .seccion-historia {
        padding: 60px 20px;
    }

    .banner-adelantate {
        padding: 24px 20px;
    }

    .seccion-espera {
        padding: 40px 20px;
    }

    .espera-col-stack {
        flex-direction: column;
        gap: 12px;
    }

    .espera-col-stack .espera-img {
        width: 100%;
    }

    .espera-titulo {
        font-size: 18px;
    }

    .red-icono {
        width: 45px;
        height: 45px;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-tiendas {
        gap: 15px;
    }
}

.btn-text-short {
    display: none;
}

.btn-text-full {
    display: inline;
}

@media (max-width: 720px) {
    .btn-text-short {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
}
