/* ============================================================================
   L'HUMIDOR · Editorial black-and-white luxury
   Palette:  #000 / #fff / #111 / #f5f5f5 / #e5e5e5 / #666
   Type:     Cormorant Garamond (display) · Inter (body)
   ============================================================================ */

:root {
    --ink: #000000;
    --ink-soft: #111111;
    --paper: #ffffff;
    --paper-soft: #f5f5f5;
    --paper-warm: #fafaf7;
    --rule: #e5e5e5;
    --rule-strong: #1a1a1a;
    --mute: #666666;
    --mute-soft: #999999;

    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --page-x: clamp(20px, 4vw, 64px);
    --section-y: clamp(80px, 10vw, 140px);

    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition), color var(--transition);
}

a:hover { opacity: .6; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(40px, 6.2vw, 84px); font-weight: 500; letter-spacing: -.02em; }
h2 { font-size: clamp(32px, 4.2vw, 56px); font-weight: 500; }
h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; font-family: var(--sans); letter-spacing: .02em; }

p { margin: 0 0 1.2em; font-size: 16px; line-height: 1.75; color: #1a1a1a; }
p.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; color: var(--ink); font-weight: 400; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

::selection { background: var(--ink); color: var(--paper); }

.container { max-width: 1680px; margin: 0 auto; padding: 0 var(--page-x); }
.container-narrow { max-width: 960px; }
.container-wide { max-width: 1920px; }
.container-full { max-width: 100%; padding: 0 var(--page-x); }
.full-bleed { max-width: 100%; padding: 0; }

/* ============================================================================
   TOPBAR
   ============================================================================ */
.topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.topbar-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 10px var(--page-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-meta { font-weight: 400; color: rgba(255,255,255,.7); }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar-links a { color: var(--paper); font-weight: 500; }
.topbar-sep { color: rgba(255,255,255,.35); }

@media (max-width: 780px) {
    .topbar-meta { display: none; }
    .topbar-inner { justify-content: center; }
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    transition: box-shadow var(--transition);
}
.nav.is-scrolled { box-shadow: 0 2px 0 var(--rule); }
.nav-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 18px var(--page-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--ink);
    line-height: 1;
    flex-shrink: 0;
}
.nav-logo-mark {
    font-style: italic;
    color: var(--ink);
}
.nav-logo-text {
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 6px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width var(--transition);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-cta { display: flex; gap: 16px; align-items: center; }
.nav-phone {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--ink);
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ink);
    width: 44px; height: 44px;
    padding: 0;
    cursor: pointer;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 10px; right: 10px;
    height: 1px;
    background: var(--ink);
    transition: all var(--transition);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 15px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

@media (max-width: 1000px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-toggle { display: block; }
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 100;
    padding: 100px var(--page-x) 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity var(--transition), transform var(--transition);
    overflow-y: auto;
}
.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--rule); }
.mobile-nav li a {
    display: block;
    padding: 20px 0;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--ink);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-solid {
    background: var(--ink);
    color: var(--paper);
}
.btn-solid:hover {
    background: var(--paper);
    color: var(--ink);
    opacity: 1;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
    opacity: 1;
}
.btn-light {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn-light:hover {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
    opacity: 1;
}
.btn-ghost-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    opacity: 1;
}
.btn-block { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ink);
}
.link-arrow:hover { gap: 14px; opacity: 1; }

/* ============================================================================
   SECTION CHROME
   ============================================================================ */
.section { padding: var(--section-y) 0; }
.section-sm { padding: 56px 0; }
.bg-dark { background: var(--ink); color: var(--paper); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--paper); }
.bg-dark p { color: rgba(255,255,255,.78); }
.bg-soft { background: var(--paper-soft); }
.bg-warm { background: var(--paper-warm); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px;
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--ink);
}
.bg-dark .eyebrow { color: var(--paper); }
.bg-dark .eyebrow::before { background: var(--paper); }

.section-header { margin-bottom: 72px; }
.section-header-centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }

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

/* ============================================================================
   HERO (home) — rediseño abril 2026
   Estructura robusta: background a sangre completa + inner con max-width.
   Grid 2 columnas con minmax(0, X) para evitar desbordes.
   No aspect-ratio, no border-radius (causaban el corte lateral anterior).
   ============================================================================ */
.hero {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    min-height: clamp(640px, 82vh, 900px);
    padding: clamp(140px, 18vh, 200px) 0 80px;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(1) brightness(.5) contrast(1.04);
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.55) 100%),
        linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 380px);
    gap: clamp(40px, 5vw, 96px);
    align-items: end;
    min-height: inherit;
}
.hero__text { min-width: 0; }
.hero__kicker {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.3);
    margin-bottom: 28px;
}
.hero__h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(44px, 6.4vw, 104px);
    line-height: 1.02;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 28px;
    max-width: 14ch;
}
.hero__h1 em {
    font-style: italic;
    font-weight: 400;
}
.hero__lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    max-width: 54ch;
    margin: 0 0 36px;
}
.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-self: stretch;
    padding: 8px 0;
    min-width: 0;
}
.hero__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.hero__meta li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.hero__meta strong {
    color: #fff;
    font-weight: 500;
}
.hero__climate { margin-top: auto; }

/* Responsive */
@media (max-width: 1100px) {
    .hero { min-height: 720px; padding: 140px 0 64px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__aside { padding-top: 16px; }
}
@media (max-width: 720px) {
    .hero { min-height: 620px; padding: 130px 0 56px; }
    .hero__h1 { max-width: 20ch; font-size: clamp(36px, 10vw, 56px); }
    .hero__aside { gap: 24px; }
}
@media (max-width: 520px) {
    .hero__climate { display: none; }
}

/* Sub-hero (páginas interiores) */
.hero-sub {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: 140px 0 100px;
    overflow: hidden;
}
.hero-sub-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .35;
}
.hero-sub-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.hero-sub-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.85));
}
.hero-sub .container { position: relative; z-index: 1; }
.hero-sub h1 {
    color: var(--paper);
    max-width: 18ch;
    margin-bottom: 24px;
}
.hero-sub-lead {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,.85);
    max-width: 62ch;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */
.breadcrumb {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: rgba(255,255,255,.6);
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--paper); opacity: 1; }
.breadcrumb span { margin: 0 10px; color: rgba(255,255,255,.3); }

/* ============================================================================
   FEATURES / VALUE PROP GRID
   ============================================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}
.feature-cell {
    padding: 48px 40px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background var(--transition);
}
.feature-cell:hover { background: var(--paper-soft); }
.feature-cell-num {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--mute);
    margin-bottom: 24px;
    display: block;
}
.feature-cell h3 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}
.feature-cell p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mute);
    margin: 0;
}

/* ============================================================================
   TIPOLOGÍAS / CATEGORÍAS GRID (cards grandes con imagen)
   ============================================================================ */
.tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 0;
}
.tip-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--ink);
    aspect-ratio: 16 / 11;
    color: var(--paper);
    min-height: 400px;
}
/* En grid de 2 columnas (paneles grandes) usamos panorámico más plano */
@media (min-width: 1200px) {
    .tip-grid[data-grid="2"] .tip-card { aspect-ratio: 21 / 10; min-height: 480px; }
    .tip-grid[data-grid="3"] .tip-card { aspect-ratio: 3 / 2; }
}
.tip-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(.8);
    transition: transform .8s cubic-bezier(.4, 0, .2, 1), filter .6s ease;
    z-index: 0;
}
.tip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.85) 100%);
    transition: background var(--transition);
}
.tip-card:hover img {
    transform: scale(1.06);
    filter: grayscale(1) brightness(.6);
}
.tip-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.95) 100%); }
.tip-card-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--paper);
}
.tip-card-num {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
    letter-spacing: .05em;
}
.tip-card h3 {
    color: var(--paper);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 500;
    margin-bottom: 12px;
}
.tip-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
    margin: 0 0 20px;
    max-width: 42ch;
}
.tip-card-cta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.tip-card:hover { opacity: 1; }

/* ============================================================================
   PROCESO (numeración editorial)
   ============================================================================ */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.process-list li {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    padding: 48px 0;
    border-top: 1px solid var(--rule);
    align-items: start;
}
.process-list li:last-child { border-bottom: 1px solid var(--rule); }
.process-num {
    font-family: var(--serif);
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
}
.process-list h3 {
    font-size: clamp(22px, 2vw, 28px);
    margin: 0 0 12px;
}
.process-list p { margin: 0; font-size: 15px; color: var(--mute); }
.bg-dark .process-list li { border-color: rgba(255,255,255,.15); }
.bg-dark .process-num { color: var(--paper); }

@media (max-width: 780px) {
    .process-list li { grid-template-columns: 50px 1fr; }
    .process-list li > *:nth-child(3) { grid-column: 2; }
    .process-num { font-size: 28px; }
}

/* ============================================================================
   TECHNICAL SPECS TABLE (para páginas de producto)
   ============================================================================ */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}
.spec-table th,
.spec-table td {
    padding: 20px 16px;
    text-align: left;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
    font-size: 15px;
    line-height: 1.55;
}
.spec-table th {
    width: 40%;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    background: transparent;
}
.spec-table td { color: #222; }
.spec-table tr:first-child th,
.spec-table tr:first-child td { border-top: 1px solid var(--ink); }

/* ============================================================================
   GALLERY (imágenes asimétricas)
   ============================================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
}
.gallery-item {
    overflow: hidden;
    background: var(--paper-soft);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.4, 0, .2, 1);
    filter: grayscale(.5);
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}
.gallery-lg { grid-column: span 8; grid-row: span 2; aspect-ratio: 4/3; }
.gallery-md { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-sm { grid-column: span 3; aspect-ratio: 1/1; }
.gallery-wide { grid-column: span 6; aspect-ratio: 3/2; }

@media (max-width: 900px) {
    .gallery-lg, .gallery-md, .gallery-sm, .gallery-wide { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 600px) {
    .gallery-lg, .gallery-md, .gallery-sm, .gallery-wide { grid-column: span 12; }
}

/* ============================================================================
   FEATURE COLUMN (lista de ventajas con bullet editorial)
   ============================================================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
}
.feature-list li {
    padding-left: 40px;
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: inherit;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: .65;
}
.feature-list li strong {
    font-family: var(--sans);
    font-weight: 600;
    color: inherit;
}
/* En fondo oscuro, garantiza que el texto es blanco */
.bg-dark .feature-list,
section[style*="ink"] .feature-list,
.contact-direct .feature-list,
[class*="bg-dark"] .feature-list li {
    color: rgba(255, 255, 255, .88);
}
.bg-dark .feature-list li strong,
.contact-direct .feature-list li strong { color: #fff; }
/* En fondo claro, texto oscuro por defecto */
.bg-soft .feature-list,
.bg-warm .feature-list,
section:not(.bg-dark):not(.cta):not(.contact-direct) .feature-list {
    color: #1a1a1a;
}

/* Two-column layout (texto + lista) */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq {
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    border-top: 1px solid var(--rule);
    padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
    padding: 28px 0;
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 200;
    transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--mute); }
.faq-item > div,
.faq-item > p {
    padding-bottom: 28px;
    max-width: 68ch;
    color: #1a1a1a;
}

/* ============================================================================
   TESTIMONIOS / MARCAS ASOCIADAS
   ============================================================================ */
.brands-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 48px;
    align-items: center;
    justify-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.brand-item {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink);
    opacity: .45;
    transition: opacity var(--transition);
}
.brand-item:hover { opacity: 1; }

.testimonial {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.testimonial blockquote {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 32px;
    quotes: none;
}
.testimonial blockquote::before { content: '“ '; }
.testimonial blockquote::after { content: ' ”'; }
.testimonial cite {
    font-family: var(--sans);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--mute);
}

/* ============================================================================
   FULL-BLEED IMAGE SECTION
   ============================================================================ */
.full-image {
    position: relative;
    width: 100%;
    height: clamp(480px, 90vh, 900px);
    background: var(--ink);
    overflow: hidden;
}
.full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 14s ease-in-out;
}
.full-image:hover img { transform: scale(1.05); }

/* Cinematic panoramic aspect — para hacer que ciertos bloques respiren */
.panoramic {
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}
.panoramic img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

/* ============================================================================
   STICKY WHATSAPP · botón flotante presente en todas las páginas
   ============================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .08);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: wa-in .8s cubic-bezier(.4, 0, .2, 1) .8s forwards;
}
@keyframes wa-in {
    to { opacity: 1; transform: translateY(0); }
}
.whatsapp-float:hover {
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 0 1px var(--ink);
    opacity: 1;
}
.whatsapp-float svg {
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.whatsapp-float:hover svg { transform: scale(1.08) rotate(-6deg); }

/* Pulso sutil para llamar la atención */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    opacity: .5;
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);    opacity: .55; }
    70%  { transform: scale(1.12); opacity: 0;   }
    100% { transform: scale(1.12); opacity: 0;   }
}
.whatsapp-float:hover::before { animation-play-state: paused; opacity: 0; }

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 14px;
        gap: 0;
    }
    .whatsapp-float-label { display: none; }
    .whatsapp-float svg { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; opacity: 1; transform: none; }
    .whatsapp-float::before { animation: none; }
}

/* ============================================================================
   CLIMATE MARQUEE · tira scrolling con specs climáticas (banda superior)
   ============================================================================ */
.climate-marquee {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.climate-marquee-track {
    display: inline-flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-left: 64px;
}
.climate-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.climate-marquee-track span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: .5;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .climate-marquee-track { animation: none; }
}

/* ============================================================================
   CLIMATE DISPLAY · visualización tipo "dashboard" (grande, técnica)
   ============================================================================ */
/* =================================================================
   CLIMATE DISPLAY · panel estilo control de vinoteca profesional
   (imita un thermostat de nevera: bezel metálico + pantalla LCD
   verde con glow + LED de estado + segmented digits)
   ================================================================= */
.climate-display {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 40%, #0f0f0f 100%);
    border: 1px solid #3a3a3a;
    border-top-color: #555;
    border-bottom-color: #000;
    border-radius: 10px;
    width: clamp(280px, 26vw, 340px);
    padding: 18px 18px 16px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        inset 0 -1px 0 rgba(0,0,0,.4),
        0 30px 80px -20px rgba(0,0,0,.7),
        0 0 0 1px rgba(255,255,255,.02);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

/* Header del panel con marca y LED de power */
.climate-display::before {
    content: 'L\'Humidor  ·  Climate Control';
    display: block;
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.climate-display::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow:
        0 0 8px #4ade80,
        inset 0 0 2px rgba(0,0,0,.3);
    animation: climateLedPulse 2.4s ease-in-out infinite;
}
@keyframes climateLedPulse {
    0%, 100% { opacity: .5; }
    50%      { opacity: 1;  }
}

/* Lectura individual · estilo pantalla LCD segmentada */
.climate-reading {
    background: linear-gradient(180deg, #0a1f1a 0%, #0c2823 50%, #0a1f1a 100%);
    border: 1px solid #000;
    border-radius: 6px;
    box-shadow:
        inset 0 1px 2px rgba(0,0,0,.6),
        inset 0 0 30px rgba(0, 30, 20, .6);
    padding: 14px 16px 12px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}
.climate-reading:last-child { margin-bottom: 0; }

/* Textura de "píxeles" de LCD (sutil) */
.climate-reading::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
    pointer-events: none;
}
/* Brillo de la pantalla */
.climate-reading::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
    pointer-events: none;
}

.climate-reading > * { position: relative; z-index: 1; }

.climate-label {
    display: block;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(74, 222, 128, .55);
    margin-bottom: 2px;
}

/* Valor principal · estilo dígito LCD verde glow */
.climate-value {
    display: block;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    color: #4ade80;
    letter-spacing: .02em;
    text-shadow:
        0 0 8px rgba(74, 222, 128, .6),
        0 0 16px rgba(74, 222, 128, .3);
    margin: 0;
    /* Segmented look */
    font-variant-numeric: tabular-nums;
}
.climate-value sup {
    font-size: .38em;
    font-weight: 400;
    vertical-align: top;
    margin-left: 2px;
    color: rgba(74, 222, 128, .75);
    top: .2em;
    position: relative;
    text-shadow: 0 0 6px rgba(74, 222, 128, .4);
}

.climate-range {
    display: block;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    color: rgba(74, 222, 128, .45);
    margin-top: 4px;
    text-transform: uppercase;
}

/* Barra de estado con "controles" (simulados, solo decorativos) */
.climate-display-wide {
    max-width: 720px;
    margin-top: 56px;
}
.climate-reading {
    background: var(--ink);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.climate-reading::before {
    content: '';
    position: absolute;
    top: 14px; right: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 0 10px var(--paper);
    animation: climatePulse 2s ease-in-out infinite;
}
@keyframes climatePulse {
    0%, 100% { opacity: .3; }
    50%      { opacity: 1; }
}
.climate-label {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.climate-value {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 400;
    line-height: 1;
    color: var(--paper);
    letter-spacing: -.02em;
}
.climate-value sup {
    font-family: var(--sans);
    font-size: .3em;
    font-weight: 500;
    vertical-align: top;
    margin-left: 4px;
    color: rgba(255,255,255,.6);
    top: .6em;
    position: relative;
}
.climate-range {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255,255,255,.45);
    letter-spacing: .1em;
}

/* ============================================================================
   DUAL PANEL · "Conservar + Exponer" (propuesta de valor dual)
   ============================================================================ */
.dual-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
    position: relative;
}
@media (max-width: 900px) {
    .dual-panel { grid-template-columns: 1fr; min-height: 0; }
}

.dual-panel-half {
    position: relative;
    padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.dual-panel-dark {
    background: var(--ink);
    color: var(--paper);
}
.dual-panel-light {
    background: var(--paper);
    color: var(--ink);
    border-left: 1px solid var(--rule);
}
@media (max-width: 900px) {
    .dual-panel-light { border-left: 0; border-top: 1px solid var(--rule); }
}

.dual-panel-half h3 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.02em;
    margin: 0;
}
.dual-panel-half h3 em {
    font-style: italic;
    font-weight: 400;
}
.dual-panel-dark h3 { color: var(--paper); }
.dual-panel-light h3 { color: var(--ink); }

.dual-panel-big-metric {
    font-family: var(--serif);
    font-size: clamp(100px, 12vw, 200px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -.04em;
    opacity: .12;
    position: absolute;
    top: 40px;
    right: 40px;
    pointer-events: none;
    user-select: none;
}
.dual-panel-dark .dual-panel-big-metric { color: var(--paper); }
.dual-panel-light .dual-panel-big-metric { color: var(--ink); }

.dual-panel-kicker {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 28px;
}
.dual-panel-half p {
    font-size: 17px;
    line-height: 1.6;
    margin: 28px 0 0;
    max-width: 42ch;
}
.dual-panel-dark p { color: rgba(255,255,255,.78); }
.dual-panel-light p { color: #1a1a1a; }

.dual-panel-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid;
    border-color: currentColor;
}
.dual-panel-dark .dual-panel-specs { border-color: rgba(255,255,255,.2); }
.dual-panel-light .dual-panel-specs { border-color: var(--rule); }
.dual-panel-spec-label {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: 6px;
    display: block;
}
.dual-panel-spec-value {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}
@media (max-width: 600px) {
    .dual-panel-specs { grid-template-columns: 1fr 1fr; }
}

/* ============================================================================
   VERTICAL SECTION LABEL (rotado 90°)
   ============================================================================ */
.v-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--mute);
    position: absolute;
    left: 20px;
    top: 40px;
}
.v-label::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--ink);
    margin-top: 18px;
}
@media (max-width: 900px) { .v-label { display: none; } }

/* ============================================================================
   OVERSIZED DISPLAY TYPE (titular que rompe el grid)
   ============================================================================ */
.display-oversize {
    font-size: clamp(64px, 10vw, 140px) !important;
    line-height: .9 !important;
    letter-spacing: -.03em !important;
    margin-bottom: 48px;
}
.display-oversize em {
    font-style: italic;
    font-weight: 400;
}

/* Texto serif mezclado con sans weight, estilo editorial moderno */
.mix-type {
    display: block;
    font-family: var(--sans);
    font-size: .4em;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 12px;
}

/* Número decorativo en contorno (stroked) — firma editorial moderna */
.ghost-num {
    position: absolute;
    font-family: var(--serif);
    font-size: clamp(160px, 20vw, 360px);
    font-weight: 400;
    font-style: italic;
    line-height: .8;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1px currentColor;
    text-stroke: 1px currentColor;
    opacity: .18;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    top: -20px;
    right: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.ghost-num-left { right: auto; left: -2vw; }

.section-with-ghost {
    position: relative;
    overflow: hidden;
}
.section-with-ghost > .container { position: relative; z-index: 1; }

/* Texto H2 con mix italic/regular grande para dar carácter editorial */
.h2-editorial {
    font-size: clamp(42px, 5.6vw, 80px) !important;
    line-height: .98 !important;
    letter-spacing: -.025em !important;
    font-weight: 400 !important;
    margin-bottom: 32px !important;
}
.h2-editorial em {
    font-style: italic;
    font-weight: 400;
}

/* Stroke text — para tipografía decorativa */
.stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px currentColor;
    text-stroke: 1px currentColor;
}

/* ============================================================================
   HORIZONTAL SCROLLING TIPOLOGIES (modern interaction)
   ============================================================================ */
.hscroll-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--ink) var(--paper-soft);
    padding-bottom: 16px;
}
.hscroll-wrap::-webkit-scrollbar { height: 2px; }
.hscroll-wrap::-webkit-scrollbar-track { background: var(--rule); }
.hscroll-wrap::-webkit-scrollbar-thumb { background: var(--ink); }

/* ============================================================================
   STAT COUNTER bloque grande (números que hacen de hero)
   ============================================================================ */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.stat-cell {
    padding: 64px 40px;
    text-align: left;
    border-right: 1px solid var(--rule);
    position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell-num {
    font-family: var(--serif);
    font-size: clamp(56px, 7vw, 104px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--ink);
    display: block;
    margin-bottom: 16px;
}
.stat-cell-num em {
    font-style: italic;
    font-size: .5em;
    vertical-align: top;
    color: var(--mute);
    font-weight: 300;
    margin-left: 4px;
}
.stat-cell-label {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mute);
    display: block;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-cell { padding: 40px 28px; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================================
   NOISE GRAIN texture (para romper la planitud)
   ============================================================================ */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: .06;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 3;
}

/* ============================================================================
   CONTACTO DIRECTO (reemplaza el formulario)
   ============================================================================ */
.contact-direct {
    background: var(--ink);
    color: var(--paper);
    padding: var(--section-y) 0;
}
.contact-direct h2 { color: var(--paper); }
.contact-direct p { color: rgba(255,255,255,.78); }
.contact-direct-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}
@media (max-width: 900px) { .contact-direct-grid { grid-template-columns: 1fr; } }

.contact-direct .feature-list li {
    color: rgba(255,255,255,.82);
}
.contact-direct .feature-list li strong { color: var(--paper); }
.contact-direct .feature-list li::before { background: var(--paper); }

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.15);
}
.contact-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    color: var(--paper);
    transition: padding var(--transition);
}
.contact-card:hover {
    padding-left: 16px;
    opacity: 1;
}
.contact-card-label {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    min-width: 110px;
}
.contact-card-value {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -.01em;
}
.contact-card-cta {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
}
@media (max-width: 600px) {
    .contact-card { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
    .contact-card:hover { padding-left: 0; }
}

/* ============================================================================
   LEGAL PAGES (privacidad / cookies)
   ============================================================================ */
.legal-article {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 0;
    font-size: 16px;
    line-height: 1.75;
    color: #1a1a1a;
}
.legal-article h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    margin: 48px 0 16px;
}
.legal-article h3 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 32px 0 12px;
}
.legal-article p { margin-bottom: 18px; }
.legal-article ul, .legal-article ol { margin: 0 0 24px; padding-left: 28px; }
.legal-article li { margin-bottom: 8px; line-height: 1.65; }
.legal-article strong { font-weight: 600; color: var(--ink); }
.legal-article a {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}
.legal-article a:hover { opacity: .6; }
.legal-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}
.legal-article table th,
.legal-article table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
}
.legal-article table th {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--paper-soft);
}
.legal-article hr {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 48px 0;
}
.legal-article .legal-updated {
    font-size: 13px;
    color: var(--mute);
    margin-bottom: 48px;
    font-style: italic;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.75);
    padding: 100px 0 40px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--paper);
    letter-spacing: .02em;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 320px; }
.footer-col h4 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--paper);
    margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a,
.footer-col li > span {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.55;
}
.footer-col a:hover { color: var(--paper); opacity: 1; }
.footer-social {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-social a { color: rgba(255,255,255,.7); }

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    letter-spacing: .05em;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--paper); opacity: 1; }

/* SEO local strip */
.seo-local {
    padding: 32px 0;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    letter-spacing: .05em;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.seo-local strong { color: var(--paper); font-weight: 500; margin-right: 8px; }
.seo-local a { color: rgba(255,255,255,.75); }

/* ============================================================================
   RESPONSIVE DEFAULTS
   ============================================================================ */
@media (max-width: 600px) {
    .section-header { margin-bottom: 48px; }
    .tip-card-body { padding: 28px; }
    .feature-cell { padding: 36px 28px; }
}


/* ============================================================================
   DESIGN SYSTEM CURVY · rediseño moderno con curvas, blobs y shadows
   ============================================================================ */

:root {
    --r-xs: 12px;
    --r-sm: 20px;
    --r-md: 28px;
    --r-lg: 40px;
    --r-xl: 56px;
    --r-full: 999px;
    --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, .15);
    --shadow-card: 0 30px 80px -30px rgba(0, 0, 0, .2);
    --shadow-float: 0 40px 100px -30px rgba(0, 0, 0, .3);
    --accent-warm: #f5efe6;
    --accent-warm-2: #ebe2d4;
}

/* ---- CARDS ---- */
.tip-card {
    border-radius: var(--r-lg) !important;
    overflow: hidden;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .6s ease;
    margin: 12px;
}
.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}
.tip-grid { gap: 0; padding: 0 clamp(12px, 2vw, 32px); }

/* ---- CLIMATE DISPLAY ---- */
.climate-display {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .4);
}

/* ---- FEATURE GRID ---- */
.feature-grid {
    border: none !important;
    gap: 8px;
}
.feature-cell {
    border: none !important;
    border-radius: var(--r-md);
    background: var(--accent-warm);
    padding: 48px 40px;
    transition: transform .5s ease, background .5s ease;
}
.feature-cell:hover {
    background: var(--accent-warm-2);
    transform: translateY(-4px);
}

/* ---- DUAL PANEL CURVY ---- */
.dual-panel-half {
    border-radius: 0;
}
.dual-panel {
    border-radius: var(--r-lg);
    overflow: hidden;
    margin: 40px clamp(16px, 3vw, 48px) 0;
    width: auto;
    box-shadow: var(--shadow-card);
}

/* ---- STAT STRIP CURVY ---- */
.stat-strip {
    border: none !important;
    background: var(--accent-warm);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin: 0 clamp(12px, 2vw, 32px);
    padding: 32px 24px;
    gap: 8px;
}
.stat-cell {
    background: var(--paper);
    border: none !important;
    border-radius: var(--r-md);
    padding: 40px 32px;
    transition: transform .4s ease;
}
.stat-cell:hover { transform: translateY(-4px); }
.stat-cell:last-child { border-right: none !important; }

/* ---- PROCESS LIST · numbered circles ---- */
.process-list li {
    border: none !important;
    padding: 40px 0;
    align-items: center;
}
.process-list li + li { border-top: 1px solid var(--rule); }
.process-num {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper) !important;
    font-size: 24px !important;
    font-weight: 500;
    font-style: normal !important;
    box-shadow: 0 14px 40px -10px rgba(0, 0, 0, .5);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.process-list li:hover .process-num {
    transform: scale(1.08) rotate(-6deg);
}

/* ---- FULL IMAGE · con border-radius generoso ---- */
.full-image {
    border-radius: var(--r-xl);
    margin: 0 clamp(16px, 3vw, 48px);
    width: auto;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* ---- HERO-SUB · curva inferior en páginas interiores ---- */
.hero-sub {
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    overflow: hidden;
}

/* ---- TESTIMONIAL / BRANDS ---- */
.testimonial {
    background: var(--accent-warm);
    padding: 64px 48px;
    border-radius: var(--r-lg);
    margin-bottom: 80px;
}
.brands-strip {
    border: none !important;
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 48px 32px !important;
    box-shadow: var(--shadow-soft);
}

/* ---- FAQ ---- */
.faq-item {
    border: none !important;
    background: var(--accent-warm);
    border-radius: var(--r-sm);
    padding: 0 28px;
    margin-bottom: 12px;
    transition: background .3s ease;
}
.faq-item[open] { background: var(--accent-warm-2); }

/* ---- CTA / CONTACT DIRECT ---- */
.contact-direct {
    border-radius: var(--r-xl);
    margin: 80px clamp(16px, 3vw, 48px);
    overflow: hidden;
}
.contact-card {
    border-radius: var(--r-sm);
    transition: padding .3s ease, background .3s ease;
    padding: 28px 24px !important;
}
.contact-card:hover {
    background: rgba(255, 255, 255, .05);
}

/* ============================================================================
   BLOB DECORATIONS · formas orgánicas como acento de fondo
   ============================================================================ */
.blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    opacity: .5;
    border-radius: 50%;
}
.blob-warm {
    background: radial-gradient(circle, var(--accent-warm-2), transparent 70%);
}
.blob-dark {
    background: radial-gradient(circle, rgba(0,0,0,.15), transparent 70%);
}
.blob-xl { width: 600px; height: 600px; }
.blob-lg { width: 400px; height: 400px; }
.blob-md { width: 280px; height: 280px; }

.has-blobs {
    position: relative;
    overflow: hidden;
}

/* ============================================================================
   TIP CARD MEJORADO · número como pill con blur glass
   ============================================================================ */
.tip-card-body {
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.tip-card:hover .tip-card-body { transform: translateY(-8px); }
.tip-card-num {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--r-full);
    font-size: 11px !important;
    letter-spacing: .15em !important;
    text-transform: uppercase;
    color: var(--paper);
    font-style: normal !important;
    margin-bottom: 20px !important;
    width: fit-content;
}

/* ============================================================================
   WHATSAPP FLOAT · más shadow
   ============================================================================ */
.whatsapp-float {
    box-shadow: 0 24px 60px -10px rgba(0, 0, 0, .5);
}

/* ============================================================================
   RESPONSIVE · ajustes curvy para móvil
   ============================================================================ */
@media (max-width: 900px) {
    .hero-sub { border-radius: 0 0 var(--r-lg) var(--r-lg); }
    .dual-panel, .contact-direct, .full-image { margin: 20px 8px; border-radius: var(--r-md); }
    .stat-strip { margin: 0 8px; }
    .process-num { width: 56px; height: 56px; font-size: 20px !important; }
}
