/* ============================================================
   VORAZZO — Hoja de estilos principal
   Paleta extraída del logo (tema costeño premium):
   negro, dorado, crema, teal (ola), terracota (sol), vino.
   Tipografías: Playfair Display (títulos) + Poppins (texto).
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --negro:        #0F0F0F;
    --negro-2:      #161513;
    --negro-3:      #1E1C18;
    --dorado:       #D8B36A;
    --dorado-claro: #E8D4A8;
    --dorado-osc:   #B8924A;
    --crema:        #F7F2EA;
    --crema-mute:   #cfc8bb;
    --teal:         #2D7D7D;
    --teal-claro:   #3FA0A0;
    --terracota:    #C57B3C;
    --vino:         #8B1E2D;
    --oliva:        #556B2F;

    --ff-title: 'Playfair Display', Georgia, serif;
    --ff-body:  'Poppins', system-ui, sans-serif;

    --radius:    18px;
    --radius-sm: 12px;
    --shadow:    0 18px 50px rgba(0,0,0,.45);
    --shadow-sm: 0 8px 24px rgba(0,0,0,.35);
    --gold-grad: linear-gradient(135deg, var(--dorado-claro), var(--dorado) 55%, var(--dorado-osc));
    --container: 1200px;
    --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    background: var(--negro);
    color: var(--crema);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--dorado); color: var(--negro); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--negro); }
::-webkit-scrollbar-thumb { background: var(--dorado-osc); border-radius: 10px; }

/* ── Utilidades ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 16px;
    position: relative;
    padding-left: 42px;
}
.eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 30px; height: 1px; background: var(--dorado); transform: translateY(-50%);
}

.section { padding: 110px 0; position: relative; }
.section--dark { background: var(--negro-2); }
.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__title {
    font-family: var(--ff-title);
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.12;
    color: var(--crema);
    letter-spacing: .3px;
}
.section__lead { margin-top: 20px; color: var(--crema-mute); font-size: 1.05rem; font-weight: 300; }
.section__lead em { color: var(--dorado-claro); font-style: italic; }

/* ── Botones ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-body); font-weight: 600; font-size: .92rem;
    letter-spacing: .04em; padding: 13px 28px; border-radius: 50px;
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
    will-change: transform;
}
.btn--gold { background: var(--gold-grad); color: var(--negro); box-shadow: 0 10px 26px rgba(216,179,106,.28); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(216,179,106,.42); }
.btn--outline { background: transparent; color: var(--crema); border-color: rgba(247,242,234,.35); }
.btn--outline:hover { border-color: var(--dorado); color: var(--dorado); transform: translateY(-3px); }
.btn--sm { padding: 9px 20px; font-size: .82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--xl { padding: 19px 52px; font-size: 1.12rem; }

/* ════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 18px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.navbar.scrolled {
    background: rgba(15,15,15,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(216,179,106,.12);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__logo { height: 46px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); transition: transform .4s var(--ease); }
.navbar__brand:hover .navbar__logo { transform: scale(1.06) rotate(-2deg); }
.navbar__name { font-family: var(--ff-title); font-weight: 700; font-size: 1.4rem; letter-spacing: .14em; color: var(--crema); }

.navbar__nav { display: flex; align-items: center; gap: 34px; }
.navbar__link { position: relative; font-size: .9rem; font-weight: 500; color: var(--crema); letter-spacing: .02em; transition: color .3s; }
.navbar__link::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--gold-grad); transition: width .35s var(--ease);
}
.navbar__link:hover { color: var(--dorado); }
.navbar__link:hover::after { width: 100%; }
.navbar__cta { margin-left: 6px; }

.navbar__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 1100; }
.navbar__toggle span { display: block; width: 26px; height: 2px; background: var(--crema); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.navbar__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(45,125,125,.10), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(197,123,60,.10), transparent 50%),
        var(--negro);
    overflow: hidden;
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h1v1H0z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero::before {
    /* halo dorado tenue detrás del logo */
    content: ''; position: absolute; top: 28%; left: 50%; transform: translate(-50%,-50%);
    width: 620px; height: 620px; max-width: 90vw;
    background: radial-gradient(circle, rgba(216,179,106,.16), transparent 62%);
    filter: blur(10px); pointer-events: none;
}
.hero__content { position: relative; z-index: 2; padding-top: 80px; }
.hero__logo {
    width: min(340px, 72vw); margin: 0 auto 6px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.6));
    animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

.hero__title {
    font-family: var(--ff-title); font-weight: 900;
    font-size: clamp(2.8rem, 9vw, 6rem); letter-spacing: .2em;
    background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
    color: transparent; line-height: 1; margin-bottom: 6px;
}
.hero__slogan {
    font-family: var(--ff-title); font-style: italic; font-weight: 500;
    font-size: clamp(1.2rem, 3vw, 1.9rem); color: var(--crema); margin-bottom: 14px;
}
.hero__text { color: var(--crema-mute); font-weight: 300; max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span {
    display: block; width: 26px; height: 44px; border: 2px solid rgba(247,242,234,.4); border-radius: 14px; position: relative;
}
.hero__scroll span::before {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: var(--dorado); border-radius: 4px; animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{ opacity: 0; top: 8px; } 40%{ opacity: 1; } 80%{ opacity: 0; top: 22px; } }

/* ════════════════════════════════════════════════════════
   HISTORIA — Misión / Visión / Valores
   ════════════════════════════════════════════════════════ */
.section--historia .section__title { background: none; }
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvv__card {
    background: linear-gradient(160deg, var(--negro-2), var(--negro-3));
    border: 1px solid rgba(216,179,106,.14); border-radius: var(--radius);
    padding: 42px 34px; text-align: center; transition: transform .45s var(--ease), border-color .4s, box-shadow .45s;
    position: relative; overflow: hidden;
}
.mvv__card::before {
    content: ''; position: absolute; inset: 0; background: var(--gold-grad); opacity: 0;
    transition: opacity .4s; mix-blend-mode: overlay;
}
.mvv__card:hover { transform: translateY(-10px); border-color: rgba(216,179,106,.4); box-shadow: var(--shadow); }
.mvv__icon { font-size: 2.6rem; margin-bottom: 16px; }
.mvv__card h3 { font-family: var(--ff-title); font-weight: 700; font-size: 1.5rem; color: var(--dorado); margin-bottom: 12px; }
.mvv__card p { color: var(--crema-mute); font-weight: 300; font-size: .96rem; }

/* ════════════════════════════════════════════════════════
   PRODUCTOS
   ════════════════════════════════════════════════════════ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product {
    background: var(--negro); border: 1px solid rgba(216,179,106,.16); border-radius: var(--radius);
    overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
    display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-12px); box-shadow: var(--shadow); border-color: rgba(216,179,106,.45); }
.product__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--negro-3), var(--negro-2)); }
.product__img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    transition: transform .7s var(--ease);
}
.product:hover .product__img { transform: scale(1.08); }
.product__fallback { font-size: 3.4rem; opacity: .35; }
.product__img[style*="url('')"] { background-image: none; } /* sin imagen → muestra fallback */
.product__badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--gold-grad); color: var(--negro); font-size: .7rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
    box-shadow: var(--shadow-sm);
}
.product__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-family: var(--ff-title); font-weight: 700; font-size: 1.45rem; color: var(--crema); }
.product__serves { font-size: .78rem; color: var(--teal-claro); letter-spacing: .08em; text-transform: uppercase; margin: 4px 0 12px; font-weight: 500; }
.product__desc { color: var(--crema-mute); font-weight: 300; font-size: .92rem; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.product__price { font-family: var(--ff-title); font-weight: 800; font-size: 1.7rem; color: var(--dorado); }
.products__note { text-align: center; margin-top: 48px; color: var(--crema-mute); font-style: italic; }

/* ════════════════════════════════════════════════════════
   ¿POR QUÉ? — features
   ════════════════════════════════════════════════════════ */
.section--porque { background: var(--negro); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
    text-align: center; padding: 38px 26px; border-radius: var(--radius);
    border: 1px solid transparent; transition: transform .45s var(--ease), background .4s, border-color .4s;
}
.feature:hover { transform: translateY(-8px); background: var(--negro-2); border-color: rgba(216,179,106,.2); }
.feature__icon {
    width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    background: radial-gradient(circle at 30% 30%, rgba(216,179,106,.22), rgba(45,125,125,.12));
    border: 1px solid rgba(216,179,106,.3);
}
.feature__title { font-family: var(--ff-title); font-weight: 700; font-size: 1.18rem; color: var(--dorado); margin-bottom: 10px; }
.feature__desc { color: var(--crema-mute); font-weight: 300; font-size: .9rem; }

/* ════════════════════════════════════════════════════════
   GALERÍA — Masonry
   ════════════════════════════════════════════════════════ */
.masonry { columns: 3; column-gap: 18px; }
.masonry__item {
    break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm);
    background-size: cover; background-position: center;
    background-color: var(--negro-3);
    min-height: 220px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(216,179,106,.1);
    transition: transform .5s var(--ease), box-shadow .5s;
}
.masonry__item--tall { min-height: 340px; }
.masonry__item--wide { min-height: 200px; }
.masonry__item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,.55), transparent 60%);
    opacity: 0; transition: opacity .4s;
}
.masonry__item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.masonry__item:hover::after { opacity: 1; }
.masonry__fallback { font-size: 3rem; opacity: .3; }

/* ════════════════════════════════════════════════════════
   FUTURO — roadmap
   ════════════════════════════════════════════════════════ */
.section--futuro { background: var(--negro); }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.roadmap__card {
    background: linear-gradient(160deg, var(--negro-2), var(--negro));
    border: 1px solid rgba(216,179,106,.14); border-radius: var(--radius);
    padding: 36px 30px; transition: transform .45s var(--ease), border-color .4s, box-shadow .45s;
    position: relative;
}
.roadmap__card::before {
    content: ''; position: absolute; left: 0; top: 30px; bottom: 30px; width: 3px;
    background: var(--gold-grad); border-radius: 4px; opacity: .5; transition: opacity .4s;
}
.roadmap__card:hover { transform: translateY(-8px); border-color: rgba(216,179,106,.4); box-shadow: var(--shadow-sm); }
.roadmap__card:hover::before { opacity: 1; }
.roadmap__icon { font-size: 2.3rem; margin-bottom: 14px; }
.roadmap__title { font-family: var(--ff-title); font-weight: 700; font-size: 1.3rem; color: var(--crema); margin-bottom: 8px; }
.roadmap__desc { color: var(--crema-mute); font-weight: 300; font-size: .92rem; }

/* ════════════════════════════════════════════════════════
   TESTIMONIOS
   ════════════════════════════════════════════════════════ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
    background: var(--negro); border: 1px solid rgba(216,179,106,.16); border-radius: var(--radius);
    padding: 36px 32px; position: relative; transition: transform .45s var(--ease), box-shadow .45s;
}
.testimonial::before {
    content: '\201C'; font-family: var(--ff-title); position: absolute; top: 6px; right: 26px;
    font-size: 5rem; color: var(--dorado); opacity: .16; line-height: 1;
}
.testimonial:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.testimonial__stars { color: var(--dorado); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.testimonial__text { font-family: var(--ff-title); font-style: italic; font-weight: 500; color: var(--crema); font-size: 1.06rem; line-height: 1.6; margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: var(--gold-grad); color: var(--negro); font-family: var(--ff-title); font-weight: 800;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.testimonial__author strong { display: block; color: var(--crema); font-size: .98rem; }
.testimonial__author em { color: var(--crema-mute); font-style: normal; font-size: .82rem; }

/* ════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════ */
.cta {
    position: relative; padding: 130px 0; text-align: center; overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(139,30,45,.35), transparent 60%),
        linear-gradient(135deg, var(--negro-2), var(--negro) 60%, var(--negro-3));
}
.cta__overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 80%, rgba(216,179,106,.12), transparent 55%);
}
.cta__content { position: relative; z-index: 2; max-width: 720px; }
.cta__title { font-family: var(--ff-title); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 3rem); color: var(--crema); line-height: 1.15; }
.cta__text { color: var(--crema-mute); font-weight: 300; margin: 18px 0 36px; font-size: 1.08rem; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer { background: var(--negro-2); border-top: 1px solid rgba(216,179,106,.12); padding-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer__logo { height: 70px; margin-bottom: 16px; }
.footer__tagline { font-family: var(--ff-title); font-style: italic; color: var(--dorado); font-size: 1.1rem; margin-bottom: 12px; }
.footer__desc { color: var(--crema-mute); font-weight: 300; font-size: .9rem; max-width: 360px; }
.footer__title { font-family: var(--ff-title); font-weight: 700; color: var(--crema); font-size: 1.15rem; margin-bottom: 18px; }
.footer__link { display: block; color: var(--crema-mute); font-size: .92rem; margin-bottom: 10px; transition: color .3s, padding-left .3s; }
.footer__link:hover { color: var(--dorado); padding-left: 6px; }
.footer__socials { display: flex; flex-direction: column; gap: 12px; }
.footer__social { display: flex; align-items: center; gap: 10px; color: var(--crema-mute); font-size: .92rem; transition: color .3s, transform .3s; }
.footer__social svg { color: var(--dorado); transition: transform .3s; }
.footer__social:hover { color: var(--dorado); transform: translateX(4px); }
.footer__bottom { border-top: 1px solid rgba(247,242,234,.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; color: var(--crema-mute); }
.footer__bottom strong { color: var(--dorado); }
/* ── Firma TST (misma sección en todas las webs de TST) ─── */
.footer-tst {
    border-top: 1px solid rgba(247,242,234,.08);
    background: rgba(0,0,0,.28);
    color: var(--crema-mute);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; font-size: .8rem; flex-wrap: wrap;
    cursor: pointer; text-decoration: none; transition: opacity .25s;
}
.footer-tst img { height: 24px; opacity: .9; vertical-align: middle; }
.footer-tst-name { color: var(--dorado); font-weight: 700; letter-spacing: 1px; font-size: .82rem; }
.footer-tst-sep { color: rgba(247,242,234,.25); }
.footer-tst:hover { opacity: .8; }
@media (max-width: 600px) {
    .footer-tst { flex-direction: column; gap: 5px; padding: 16px; text-align: center; }
    .footer-tst-sep { display: none; }
}

/* ── TST promo strip (firma de la agencia) ──────────────── */
.tst-strip {
    background: linear-gradient(135deg, rgba(216,179,106,.12), rgba(45,125,125,.10));
    border-top: 1px solid rgba(216,179,106,.18);
    border-bottom: 1px solid rgba(216,179,106,.06);
}
.tst-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; flex-wrap: wrap; }
.tst-strip__msg { display: flex; align-items: center; gap: 16px; }
.tst-strip__icon {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(216,179,106,.18); color: var(--dorado); border: 1px solid rgba(216,179,106,.3);
}
.tst-strip__msg strong { display: block; color: var(--crema); font-size: .98rem; }
.tst-strip__msg span { display: block; color: var(--crema-mute); font-size: .84rem; font-weight: 300; max-width: 540px; }
.tst-strip__cta { white-space: nowrap; }
@media (max-width: 600px) {
    .tst-strip__inner { flex-direction: column; align-items: flex-start; }
    .tst-strip__cta { width: 100%; }
}

/* ── Botón flotante WhatsApp ────────────────────────────── */
.wa-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    transition: transform .35s var(--ease), box-shadow .35s;
    animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.6); }
@keyframes waPulse {
    0%   { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ════════════════════════════════════════════════════════
   ANIMACIONES DE SCROLL (reveal)
   ════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__logo, .wa-float { animation: none; }
    html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — cubre desde 4K hasta móviles de 320px
   ════════════════════════════════════════════════════════ */

/* Pantallas muy grandes: contiene el ancho y agranda algo el cuerpo */
@media (min-width: 1600px) {
    :root { --container: 1340px; }
    body { font-size: 1.05rem; }
}

/* Tablets grandes / laptops pequeñas */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 992px) {
    .mvv, .products, .roadmap, .testimonials { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
    .masonry { columns: 2; }
}

@media (max-width: 760px) {
    .section { padding: 78px 0; }

    /* Navbar móvil */
    .navbar__nav {
        position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
        flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
        background: rgba(15,15,15,.97); backdrop-filter: blur(16px);
        padding: 40px; transform: translateX(110%); transition: transform .45s var(--ease);
        border-left: 1px solid rgba(216,179,106,.2);
    }
    .navbar__nav.open { transform: translateX(0); }
    .navbar__link { font-size: 1.15rem; }
    .navbar__cta { margin-left: 0; width: 100%; }
    .navbar__toggle { display: flex; }

    .mvv, .products, .roadmap, .testimonials, .features { grid-template-columns: 1fr; }
    .masonry { columns: 1; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .hero__actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero__actions .btn { width: 100%; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* Móviles medianos */
@media (max-width: 600px) {
    .section { padding: 64px 0; }
    .section__head { margin-bottom: 44px; }
    .btn--lg { padding: 14px 30px; }
    .btn--xl { padding: 16px 40px; font-size: 1rem; }
    .mvv__card, .roadmap__card, .testimonial, .product__body { padding: 30px 24px; }
    .cta { padding: 90px 0; }
}

/* Móviles pequeños (320–420px) */
@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .navbar__name { display: none; }
    .navbar__logo { height: 40px; }
    .hero__logo { width: 78vw; }
    .feature__icon { width: 66px; height: 66px; font-size: 1.7rem; }
    .footer__socials { gap: 14px; }
    .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* Pantallas muy estrechas (≤360px) */
@media (max-width: 360px) {
    .hero__title { letter-spacing: .12em; }
    .section__title { font-size: 1.7rem; }
}

/* Móvil en horizontal (landscape) y pantallas bajas */
@media (max-height: 520px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 110px 0 70px; }
    .hero__logo { width: 180px; }
}
