:root{
    --ink:oklch(0.18 0.01 258);
    --marine:oklch(0.32 0.09 258);
    --marine-dark:oklch(0.24 0.06 258);
    --marine-soft:oklch(0.82 0.03 258);
    --paper:oklch(0.97 0.004 258);
    --paper-2:oklch(0.995 0.002 258);
    --accent:oklch(0.32 0.09 258);
    --accent-soft:oklch(0.82 0.03 258);
    --alert:oklch(0.5 0.16 25);
    --ink-soft:oklch(0.5 0.02 258);
    --line:oklch(0.9 0.005 258);
    --radius: 26px;
    --radius-sm: 14px;
    --radius-pill: 999px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Libre Baskerville', serif;
    font-weight:400;
    letter-spacing:-0.005em;
    margin:0;
    color:var(--ink);
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  .eyebrow{
    font-family:'Inter', sans-serif;
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--accent);
    font-weight:500;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:15px;
    border:1px solid var(--ink);
    border-radius:var(--radius-pill);
    cursor:pointer;
    text-decoration:none;
    transition:transform .3s cubic-bezier(.16,1,.3,1), background .3s cubic-bezier(.16,1,.3,1), color .3s ease, box-shadow .3s ease;
    background:transparent;
  }
  .btn-primary{
    background:var(--ink);
    color:var(--paper-2);
    border-color:var(--ink);
  }
  .btn-primary:hover{ transform:translateY(-2px); background:var(--marine); box-shadow:0 12px 24px -10px oklch(0.32 0.09 258 / 0.5); }
  .btn-ghost{
    color:var(--ink);
    border-color:var(--ink);
  }
  .btn-ghost:hover{ transform:translateY(-2px); background:var(--ink); color:var(--paper-2); }
  .btn-whatsapp{
    background:#1F4A3A;
    color:#EFF6EF;
    border-color:#1F4A3A;
  }
  .btn-whatsapp:hover{ transform:translateY(-2px); background:#2C6650; }

  /* ---------- Brand mark: escudo con flor de lis ---------- */
  .brand-shield{
    width:var(--shield, 40px); height:var(--shield, 40px);
    background:var(--marine);
    box-shadow:inset 0 0 0 2px oklch(0.99 0.002 258 / 0.3);
    clip-path:polygon(0% 0%, 100% 0%, 100% 42%, 85% 72%, 50% 100%, 15% 72%, 0% 42%);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .brand-shield .fleur{
    color:oklch(0.99 0.002 258);
    font-size:calc(var(--shield, 40px) * 0.46);
    line-height:1;
  }
  .brand-shield.reversed{
    background:oklch(0.99 0.002 258);
    box-shadow:inset 0 0 0 2px oklch(0.32 0.09 258 / 0.3);
  }
  .brand-shield.reversed .fleur{ color:var(--marine); }

  .brand-word{ display:flex; flex-direction:column; gap:3px; }
  .brand-canosa{
    font-family:'Libre Baskerville', serif;
    font-weight:700;
    font-size:19px;
    letter-spacing:0.01em;
    color:var(--ink);
    line-height:1;
  }
  .brand-asoc{
    font-family:'Inter', sans-serif;
    font-weight:500;
    font-size:9px;
    letter-spacing:0.2em;
    text-transform:uppercase;
    color:var(--marine);
    line-height:1;
  }
  .brand-word.reversed .brand-canosa{ color:oklch(0.99 0.002 258); }
  .brand-word.reversed .brand-asoc{ color:var(--accent-soft); }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:oklch(0.97 0.004 258 / 0.75);
    backdrop-filter:blur(14px) saturate(160%);
    -webkit-backdrop-filter:blur(14px) saturate(160%);
    border-bottom:1px solid var(--line);
    transition:box-shadow .3s ease;
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
  }
  .logo{
    display:flex; align-items:center; gap:12px;
    text-decoration:none;
  }
  nav.links{
    display:flex; gap:34px;
    font-size:14.5px;
    font-weight:500;
  }
  nav.links a{
    text-decoration:none;
    padding-bottom:4px;
    border-bottom:1px solid transparent;
    transition:border-color .2s ease, color .2s ease;
  }
  nav.links a:hover{ border-color:var(--accent); color:var(--marine); }
  .nav-cta{ display:flex; gap:12px; align-items:center; }
  .nav-cta .btn{ padding:10px 18px; font-size:13.5px; }
  .burger{
    display:none;
    width:42px; height:42px;
    border:1px solid var(--line);
    border-radius:50%;
    background:transparent;
    align-items:center; justify-content:center;
    cursor:pointer;
    flex-shrink:0;
    padding:0;
  }
  .burger span,
  .burger span::before,
  .burger span::after{
    content:"";
    display:block;
    width:18px; height:2px;
    border-radius:2px;
    background:var(--ink);
    position:relative;
    transition:transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease, background .25s ease;
  }
  .burger span::before{ position:absolute; top:-6px; }
  .burger span::after{ position:absolute; top:6px; }
  .burger.is-active span{ background:transparent; }
  .burger.is-active span::before{ top:0; transform:rotate(45deg); background:var(--ink); }
  .burger.is-active span::after{ top:0; transform:rotate(-45deg); background:var(--ink); }

  /* ---------- Menú móvil ---------- */
  .mobile-nav{
    position:fixed; inset:0;
    z-index:90;
    background:var(--paper-2);
    display:flex; flex-direction:column;
    padding:104px 32px 40px;
    overflow-y:auto;
    transform:translateY(-100%);
    opacity:0;
    transition:transform .45s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  }
  .mobile-nav.is-open{ transform:translateY(0); opacity:1; }
  .mobile-nav a{
    font-family:'Libre Baskerville', serif;
    font-size:26px;
    padding:15px 0;
    border-bottom:1px solid var(--line);
    text-decoration:none;
    color:var(--ink);
  }
  .mobile-nav-cta{
    margin-top:30px;
    display:flex; flex-direction:column; gap:12px;
  }
  .mobile-nav-cta .btn{ justify-content:center; }
  body.menu-open{ overflow:hidden; }

  /* ---------- Hero ---------- */
  .hero{
    background:var(--marine);
    color:var(--paper-2);
    position:relative;
    overflow:hidden;
    border-bottom:6px solid var(--accent);
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background-image:
      radial-gradient(circle at 85% 20%, oklch(0.99 0.002 258 / 0.1), transparent 55%),
      repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 34px);
    pointer-events:none;
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1fr;
    max-width:760px;
    gap:60px;
    align-items:center;
    padding:104px 0 88px;
    position:relative;
  }
  .hero-eyebrow{
    font-family:'Inter', sans-serif;
    font-size:12px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--accent-soft);
    display:flex; align-items:center; gap:10px;
    margin-bottom:22px;
  }
  .hero-eyebrow::before{
    content:""; width:26px; height:1px; background:var(--accent-soft);
  }
  .hero h1{
    color:oklch(0.99 0.002 258);
    font-size:clamp(36px, 4.8vw, 60px);
    line-height:1.08;
    font-weight:400;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--accent-soft);
    font-weight:400;
  }
  .hero p.lead{
    margin-top:24px;
    max-width:520px;
    font-size:17px;
    color:oklch(0.99 0.002 258 / 0.82);
  }
  .hero-actions{
    margin-top:38px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .hero .btn-ghost{ color:oklch(0.99 0.002 258); border-color:oklch(0.99 0.002 258 / 0.5); }
  .hero .btn-ghost:hover{ background:oklch(0.99 0.002 258); color:var(--marine); border-color:oklch(0.99 0.002 258);}

  /* ---------- Carrusel del hero ---------- */
  .hero-carousel{ position:relative; }
  .carousel-track{ position:relative; min-height:400px; }
  .carousel-slide{
    position:absolute; inset:0;
    display:flex; flex-direction:column; justify-content:center;
    opacity:0;
    transform:translateY(16px);
    transition:opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
    pointer-events:none;
  }
  .carousel-slide.is-active{
    position:relative;
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .carousel-controls{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:8px;
  }
  .carousel-arrow{
    width:40px; height:40px; border-radius:50%;
    border:1px solid oklch(0.99 0.002 258 / 0.35);
    background:transparent;
    color:oklch(0.99 0.002 258);
    font-size:20px;
    line-height:1;
    cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, transform .2s ease;
  }
  .carousel-arrow:hover{ background:oklch(0.99 0.002 258 / 0.12); border-color:oklch(0.99 0.002 258 / 0.6); transform:translateY(-1px); }
  .carousel-dots{ display:flex; gap:8px; }
  .carousel-dot{
    width:8px; height:8px; border-radius:50%;
    background:oklch(0.99 0.002 258 / 0.3);
    border:none; padding:0; cursor:pointer;
    transition:width .35s cubic-bezier(.16,1,.3,1), background .3s ease;
  }
  .carousel-dot.is-active{ width:28px; border-radius:999px; background:var(--accent-soft); }

  /* ---------- Sections ---------- */
  section{ padding:96px 0; }
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:52px;
    border-bottom:1px solid var(--line);
    padding-bottom:26px;
  }
  .section-head h2{
    font-size:clamp(28px, 3.4vw, 40px);
    margin-top:10px;
  }
  .section-head p{
    max-width:360px;
    color:var(--ink-soft);
    font-size:15px;
    margin:0;
  }

  /* ---------- Coverage cards ---------- */
  .coverage-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:18px;
  }
  .coverage-card{
    background:var(--paper-2);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:32px 28px;
    position:relative;
    transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .coverage-card:hover{
    background:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 34px -22px rgba(15,29,46,0.35);
  }
  .coverage-num{
    font-family:'Inter', sans-serif;
    font-size:12px;
    color:var(--accent);
    letter-spacing:0.08em;
  }
  .coverage-card h3{
    font-size:20px;
    margin-top:14px;
    margin-bottom:10px;
    font-weight:400;
  }
  .coverage-card p{
    font-size:14px;
    color:var(--ink-soft);
    margin:0 0 18px;
    min-height:58px;
  }
  .coverage-link{
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--marine);
    border-bottom:1px solid var(--marine);
    padding-bottom:2px;
  }
  .coverage-link:hover{ color:var(--alert); border-color:var(--alert); }

  /* ---------- Audience segments (estilo Chubb) ---------- */
  .audience{ padding-top:0; }
  .audience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  .audience-card{
    background:var(--marine);
    color:oklch(0.99 0.002 258);
    border-radius:var(--radius);
    padding:38px 32px;
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    position:relative;
    overflow:hidden;
    text-decoration:none;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .audience-card::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(circle at 85% 10%, oklch(0.99 0.002 258 / 0.08), transparent 55%);
    pointer-events:none;
  }
  .audience-card:nth-child(2){ background:var(--marine-dark); }
  .audience-card:nth-child(3){
    background:var(--paper-2);
    border:1.5px solid var(--line);
    color:var(--ink);
  }
  .audience-card:nth-child(3) .audience-eyebrow{ color:var(--marine); }
  .audience-card:nth-child(3) p{ color:var(--ink-soft); }
  .audience-card:nth-child(3) .audience-arrow{ background:var(--marine); color:var(--paper-2); }
  .audience-card:hover{ transform:translateY(-4px); box-shadow:0 22px 40px -20px rgba(15,29,46,0.4); }
  .audience-eyebrow{
    font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--accent-soft); font-weight:600; margin-bottom:10px;
  }
  .audience-card h3{ color:inherit; font-size:26px; margin-bottom:10px; }
  .audience-card p{ color:oklch(0.99 0.002 258 / 0.75); font-size:14px; margin:0 0 22px; }
  .audience-arrow{
    width:38px; height:38px; border-radius:50%;
    background:var(--accent-soft); color:var(--ink);
    display:flex; align-items:center; justify-content:center;
    font-size:16px;
  }

  /* ---------- Por qué elegirnos ---------- */
  .whyus{
    background:var(--paper-2);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .whyus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }
  .whyus h2{ font-size:clamp(28px,3.4vw,40px); margin-bottom:20px; line-height:1.15; }
  .whyus-lead{ font-size:17px; color:var(--ink-soft); margin-bottom:8px; }
  .whyus-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    margin-top:20px;
  }
  .stat{
    border-top:2px solid var(--accent);
    padding-top:14px;
  }
  .stat b{
    display:block;
    font-family:'Libre Baskerville', serif;
    font-size:40px;
    font-weight:400;
    color:var(--marine);
  }
  .stat span{ font-size:13.5px; color:var(--ink-soft); }

  /* ---------- Pilares (Sobre nosotros) ---------- */
  .pillars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
    margin-top:52px;
    padding-top:44px;
    border-top:1px solid var(--line);
  }
  .pillar-card{ border-top:2px solid var(--accent); padding-top:18px; }
  .pillar-card h3{ font-size:18px; margin-bottom:8px; }
  .pillar-card p{ font-size:14px; color:var(--ink-soft); margin:0; line-height:1.5; }
  .pillar-card a{ font-size:13px; }

  /* ---------- Productores ---------- */
  .productores{
    background:var(--marine-dark);
    color:oklch(0.99 0.002 258);
  }
  .productores-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
  }
  .productores-copy{ max-width:600px; }
  .productores-copy p{ color:oklch(0.99 0.002 258 / 0.75); margin-top:16px; font-size:15px; }
  .productores-btn{
    background:var(--accent-soft);
    border-color:var(--accent-soft);
    color:var(--ink);
    flex-shrink:0;
  }
  .productores-btn:hover{ background:oklch(0.99 0.002 258); border-color:oklch(0.99 0.002 258); }

  /* ---------- Carrusel de aseguradoras (marquesina infinita) ---------- */
  .marquee-section{ padding:76px 0; overflow:hidden; }
  .marquee{
    position:relative;
    width:100%;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .marquee-track{
    display:flex;
    width:max-content;
    animation:marquee-scroll 32s linear infinite;
  }
  .marquee:hover .marquee-track{ animation-play-state:paused; }
  .marquee-group{
    display:flex;
    align-items:center;
    gap:64px;
    padding-right:64px;
    flex-shrink:0;
  }
  .marquee-logo{
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:22px;
    white-space:nowrap;
    color:var(--ink-soft);
    filter:grayscale(1);
    opacity:0.65;
    transition:opacity .3s ease, color .3s ease;
  }
  .marquee-logo:hover{ opacity:1; color:var(--ink); }
  @keyframes marquee-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .marquee-track{ animation:none; }
    .marquee{ overflow-x:auto; }
  }

  /* ---------- CTA banner ---------- */
  .cta-band{
    background:var(--ink);
    border-radius:var(--radius);
    margin:0 auto;
    max-width:1180px;
    padding:56px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
  }
  .cta-band h2{ color:oklch(0.99 0.002 258); font-size:clamp(24px,2.8vw,32px); max-width:520px; }
  .cta-band .btn-primary{ background:var(--accent); border-color:var(--accent); color:var(--ink); }
  .cta-band .btn-primary:hover{ background:var(--accent-soft); border-color:var(--accent-soft); }

  /* ---------- Process strip ---------- */
  .process{
    background:var(--ink);
    color:var(--paper-2);
  }
  .process .section-head{ border-color:oklch(0.99 0.002 258 / 0.16); }
  .process .section-head p{ color:oklch(0.99 0.002 258 / 0.65); }
  .process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:36px;
  }
  .process-step .eyebrow{ color:var(--accent-soft); }
  .process-step h3{ color:oklch(0.99 0.002 258); font-size:18px; margin:12px 0 8px; }
  .process-step p{ color:oklch(0.99 0.002 258 / 0.65); font-size:14px; margin:0; }

  /* ---------- Forms (shared) ---------- */
  .panel{
    background:var(--paper-2);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:44px;
  }
  .panel-alert{ border-top:4px solid var(--alert); }
  .panel-accent{ border-top:4px solid var(--accent); }
  .form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 22px;
  }
  .field{ display:flex; flex-direction:column; gap:8px; }
  .field.full{ grid-column:1 / -1; }
  label{
    font-size:12.5px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--ink-soft);
  }
  input, select, textarea{
    font-family:'Inter', sans-serif;
    font-size:14.5px;
    padding:12px 16px;
    border:1px solid var(--line);
    border-radius:var(--radius-sm);
    background:#fff;
    color:var(--ink);
  }
  input:focus, select:focus, textarea:focus{
    outline:2px solid var(--marine);
    outline-offset:1px;
  }
  textarea{ resize:vertical; min-height:96px; font-family:'Inter', sans-serif; }
  .form-foot{
    margin-top:26px;
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
  }
  .form-note{ font-size:13px; color:var(--ink-soft); }
  .split{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:start;
  }
  .split-aside h2{ font-size:clamp(26px,3vw,34px); margin-bottom:16px; }
  .split-aside p{ color:var(--ink-soft); font-size:15px; margin-bottom:26px; }
  .aside-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
  .aside-list li{
    display:flex; gap:12px; align-items:flex-start;
    font-size:14.5px; color:var(--ink-soft);
  }
  .aside-list b{ color:var(--ink); }
  .dot{
    width:6px;height:6px;border-radius:50%;
    background:var(--accent); margin-top:8px; flex-shrink:0;
  }

  /* siniestro urgent box */
  .urgent-box{
    background:#F6ECE7;
    border:1px solid rgba(152,57,42,0.3);
    border-radius:var(--radius);
    padding:20px 22px;
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:28px;
  }
  .urgent-box svg{ flex-shrink:0; margin-top:2px; }
  .urgent-box b{ display:block; margin-bottom:4px; }
  .urgent-box p{ margin:0; font-size:13.5px; color:var(--ink-soft); }

  /* ---------- Contact / mensajes ---------- */
  .contact-section{ background:var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .contact-grid{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:60px;
  }
  .info-block{ margin-bottom:26px; }
  .info-block .eyebrow{ display:block; margin-bottom:8px; }
  .info-block div.val{ font-size:16px; font-weight:500; }
  .info-block div.val a{ text-decoration:none; border-bottom:1px solid var(--line); }

  /* ---------- Footer ---------- */
  footer{
    background:var(--ink);
    color:oklch(0.99 0.002 258 / 0.75);
    padding:56px 0 30px;
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    padding-bottom:36px;
    border-bottom:1px solid oklch(0.99 0.002 258 / 0.14);
    margin-bottom:26px;
  }
  footer .brand-canosa{ color:oklch(0.99 0.002 258); }
  footer .brand-asoc{ color:var(--accent-soft); }
  .footer-cols{ display:flex; gap:64px; }
  .footer-col h4{
    font-family:'Inter', sans-serif;
    font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--accent-soft); margin-bottom:14px; font-weight:500;
  }
  .footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
  .footer-col a{ text-decoration:none; font-size:14px; color:oklch(0.99 0.002 258 / 0.75); }
  .footer-col a:hover{ color:var(--accent-soft); }
  .footer-bottom{
    display:flex; justify-content:space-between; font-size:12.5px;
    color:oklch(0.99 0.002 258 / 0.5);
    flex-wrap:wrap; gap:10px;
  }

  /* ---------- WhatsApp floating button ---------- */
  .wa-float{
    position:fixed;
    right:24px; bottom:24px;
    z-index:100;
    width:60px; height:60px;
    border-radius:50%;
    background:#1F4A3A;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 12px 30px -8px rgba(0,0,0,0.5);
    text-decoration:none;
    transition:transform .2s ease;
  }
  .wa-float:hover{ transform:scale(1.08); }
  .wa-float::before{
    content:"";
    position:absolute; inset:-6px;
    border-radius:50%;
    border:1px solid rgba(31,74,58,0.4);
    animation:pulse 2.6s ease-out infinite;
  }
  @keyframes pulse{
    0%{ transform:scale(0.9); opacity:0.7; }
    70%{ transform:scale(1.35); opacity:0; }
    100%{ opacity:0; }
  }

  .toast{
    position:fixed; left:50%; bottom:100px; transform:translate(-50%, 10px);
    background:var(--ink); color:oklch(0.99 0.002 258);
    padding:12px 20px; border-radius:var(--radius-pill);
    font-size:13.5px; font-weight:500;
    opacity:0; pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
    z-index:200;
    border-left:3px solid var(--accent);
  }
  .toast.show{ opacity:1; transform:translate(-50%,0); }

  @media (max-width: 920px){
    nav.links{ display:none; }
    .nav-cta .btn-ghost{ display:none; }
    .burger{ display:flex; }
    .hero-inner{ grid-template-columns:1fr; padding:64px 0 56px; }
    .process-grid{ grid-template-columns:1fr 1fr; row-gap:34px; }
    .split{ grid-template-columns:1fr; }
    .contact-grid{ grid-template-columns:1fr; }
    .footer-top{ flex-direction:column; gap:26px; }
    .footer-cols{ gap:40px; }
    .form-grid{ grid-template-columns:1fr; }
    .panel{ padding:28px; }
    .audience-grid{ grid-template-columns:1fr; }
    .whyus-grid{ grid-template-columns:1fr; gap:36px; }
    .cta-band{ padding:40px 28px; }
    .carousel-track{ min-height:340px; }
    .pillars-grid{ grid-template-columns:1fr 1fr; }
    .productores-inner{ flex-direction:column; align-items:flex-start; }
  }

  /* ---------- Reveal on scroll ---------- */
  .js-reveal-ready .coverage-card,
  .js-reveal-ready .audience-card,
  .js-reveal-ready .process-step,
  .js-reveal-ready .panel,
  .js-reveal-ready .cta-band,
  .js-reveal-ready .pillar-card,
  .js-reveal-ready .whyus-grid > div{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  }
  .js-reveal-ready .coverage-card.is-visible,
  .js-reveal-ready .audience-card.is-visible,
  .js-reveal-ready .process-step.is-visible,
  .js-reveal-ready .panel.is-visible,
  .js-reveal-ready .cta-band.is-visible,
  .js-reveal-ready .pillar-card.is-visible,
  .js-reveal-ready .whyus-grid > div.is-visible{
    opacity:1;
    transform:translateY(0);
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .wa-float::before{ animation:none; }
    .js-reveal-ready .coverage-card,
    .js-reveal-ready .audience-card,
    .js-reveal-ready .process-step,
    .js-reveal-ready .panel,
    .js-reveal-ready .cta-band,
    .js-reveal-ready .pillar-card,
    .js-reveal-ready .whyus-grid > div{
      opacity:1; transform:none; transition:none;
    }
    .carousel-slide{ transition:opacity .2s linear; transform:none; }
  }

/* ---------- Encabezado de subpágina ---------- */
.page-header{
  background:var(--marine);
  color:oklch(0.99 0.002 258);
  padding:72px 0 60px;
  border-bottom:6px solid var(--accent-soft);
  position:relative;
  overflow:hidden;
}
.page-header::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 85% 20%, oklch(0.99 0.002 258 / 0.1), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 34px);
  pointer-events:none;
}
.page-header .wrap{ position:relative; }
.page-header .eyebrow{ color:var(--accent-soft); }
.page-header h1{
  color:oklch(0.99 0.002 258);
  font-size:clamp(32px, 4.2vw, 48px);
  margin-top:14px;
  line-height:1.1;
}
.page-header p{
  color:oklch(0.99 0.002 258 / 0.8);
  margin-top:16px;
  max-width:560px;
  font-size:16px;
}

/* ---------- Enlace activo del menú ---------- */
nav.links a.is-current{ color:var(--marine); border-color:var(--accent); }
.mobile-nav a.is-current{ color:var(--marine); }
