﻿:root{
      --brand-1:#06B6D4;
      --brand-2:#0EA5E9;
      --brand-3:#14B8A6;

      --whatsapp:#25D366;
      --navy:#071A2B;

      --bg:#ffffff;
      --surface:#ffffff;
      --surface-2:#F5FAFF;

      --text:#0f172a;
      --muted:#475569;
      --muted-2:#64748b;
      --line:rgba(15,23,42,.10);

      --shadow: 0 18px 40px rgba(2, 6, 23, .10);
      --shadow-soft: 0 10px 25px rgba(2, 6, 23, .08);

      --radius:18px;
      --radius-sm:12px;

      --container: 1180px;
    }

    *{ box-sizing:border-box; }
    html,body{ margin:0; padding:0; }
    body{
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.55;
    }
    img{ max-width:100%; display:block; }
    a{ color:inherit; text-decoration:none; }
    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 22px;
    }

    /* WhatsApp flotante */
    .wa-float{
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 99;
      width: 56px;
      height: 56px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #25D366;
      box-shadow: 0 14px 30px rgba(2, 6, 23, .22);
      border: 1px solid rgba(255,255,255,.35);
    
      color: #ffffff;}

    /* WhatsApp icon (SVG) — evita pixelado / desalineación */
    .wa-icon, .wa-svg{
      width: 18px;
      height: 18px;
      display: block;
      flex: 0 0 auto;
    }
    .btn-lg .wa-icon, .btn-lg .wa-svg{ width: 20px; height: 20px; }
    .btn-compact .wa-icon, .btn-compact .wa-svg{ width: 18px; height: 18px; }
    .wa-float .wa-icon, .wa-float .wa-svg{ width: 26px; height: 26px; }
    .wa-svg path{ shape-rendering: geometricPrecision; }
    /* Buttons */
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      letter-spacing: .2px;
      border: 1px solid transparent;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
      cursor: pointer;
      user-select:none;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
    .btn:active{ transform: translateY(0); box-shadow:none; }

    .btn-primary{
      background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 55%, var(--brand-3) 100%);
      color: #ffffff;
      border-color: rgba(0,0,0,.0);
    }
    .btn-primary:hover{ filter:saturate(1.05); }

    .btn-outline{
      background: transparent;
      color: var(--text);
      border-color: rgba(15,23,42,.18);
    }
    .btn-outline:hover{ border-color: rgba(15,23,42,.28); }

    .btn-ghost{
      background: rgba(15,23,42,.04);
      color: var(--text);
      border-color: transparent;
    }
    .btn-lg{ padding: 14px 20px; }
    .btn-compact{ padding: 10px 14px; }
    .btn-block{ width:100%; }

    /* Header */
    .site-header{
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 0;
      gap: 18px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand-logo{
      width: 40px;
      height: 40px;
      object-fit: contain;
  flex: 0 0 auto;
    }
    .brand-text{ display:flex; flex-direction:column; line-height:1.1; }
    .brand-name{ font-weight:900; letter-spacing:.4px; }
    .brand-tagline{ font-size: 12px; color: var(--muted-2); font-weight:700; }

    .nav{
      display:flex;
      align-items:center;
      gap: 18px;
    }
    .nav a{
      font-weight: 800;
      font-size: 14px;
      color: rgba(15,23,42,.78);
      padding: 8px 10px;
      border-radius: 999px;
    }
    .nav a:hover{ background: rgba(15,23,42,.04); color: rgba(15,23,42,.92); }

    .header-actions{
      display:flex;
      align-items:center;
      gap: 12px;
    }

    .header-social{
      display:flex;
      gap: 10px;
      align-items:center;
    }
    .header-social img{
      width: 18px;
      height: 18px;
      opacity: .75;
    }
    .header-social a:hover img{ opacity: 1; }

    .nav-toggle{
      display:none;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.16);
      background: rgba(255,255,255,.7);
      cursor:pointer;
    }
    .nav-toggle span{
      display:block;
      width: 18px;
      height: 2px;
      background: rgba(15,23,42,.80);
      margin: 4px auto;
      border-radius: 2px;
    }

    .mobile-nav{
      display:none;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,.92);
      padding: 12px 22px 18px;
    }
    .mobile-nav a{
      display:block;
      padding: 12px 10px;
      border-radius: 12px;
      font-weight: 900;
      color: rgba(15,23,42,.86);
    }
    .mobile-nav a:hover{ background: rgba(15,23,42,.04); }
    .mobile-ctas{ display:grid; gap: 10px; margin-top: 10px; }

    /* Hero */
    .hero{
      position: relative;
      padding: 56px 0 54px;
      overflow:hidden;
      background:
        radial-gradient(900px 500px at 15% 15%, rgba(0, 183, 214, .20), transparent 60%),
        radial-gradient(900px 500px at 85% 25%, rgba(37, 99, 235, .22), transparent 62%),
        linear-gradient(180deg, #ffffff, #f7fbfb);
      border-bottom: 1px solid var(--line);
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: start;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .9px;
      text-transform: uppercase;
      color: rgba(15,23,42,.62);
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      padding: 8px 12px;
    }
    .hero-left h1{
      margin: 14px 0 10px;
      font-size: clamp(30px, 3.2vw, 46px);
      line-height: 1.08;
      letter-spacing: -0.8px;
    }
    .lead{
      margin: 0 0 16px;
      font-size: 16px;
      color: rgba(15,23,42,.74);
      max-width: 58ch;
    }
    .checks{
      list-style:none;
      padding:0;
      margin: 14px 0 18px;
      display:grid;
      gap: 10px;
    }
    .checks li{
      padding-left: 30px;
      position: relative;
      font-weight: 800;
      color: rgba(15,23,42,.78);
    }
    .checks li::before{
      content:"";
      position:absolute;
      left:0;
      top: 3px;
      width: 18px;
      height: 18px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
      box-shadow: 0 10px 20px rgba(37, 99, 235, .20);
    }
    .checks li::after{
      content:"";
      position:absolute;
      left:6px;
      top: 8px;
      width: 6px;
      height: 3px;
      border-left: 2px solid rgba(5,59,50,.95);
      border-bottom: 2px solid rgba(5,59,50,.95);
      transform: rotate(-45deg);
    }
    .hero-cta{
      display:flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }
    .micro{
      margin-top: 14px;
      color: rgba(15,23,42,.62);
      font-size: 13px;
      font-weight: 650;
    }
    .micro a{ text-decoration: underline; text-underline-offset: 3px; }

    .hero-card{
      background: rgba(255,255,255,.85);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    /* NEW: badges row (enfoques) */
    .badge-row{
      display:flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items:center;
      margin-bottom: 10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      font-weight: 950;
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color: rgba(15,23,42,.78);
    }
    .badge-primary{
      color: rgba(5,59,50,.95);
      background: linear-gradient(135deg, rgba(37, 99, 235, .22), rgba(0, 183, 214, .22));
      border-color: rgba(37, 99, 235, .22);
    }

    .hero-card h2{
      margin: 10px 0 6px;
      font-size: 20px;
      letter-spacing: -0.4px;
    }
    .muted{
      margin: 0 0 14px;
      color: rgba(15,23,42,.62);
      font-weight: 650;
      font-size: 13px;
    }

    .form{ display:grid; gap: 12px; }
    .form .field label{
      display:block;
      font-size: 12px;
      font-weight: 900;
      color: rgba(15,23,42,.66);
      margin-bottom: 6px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .field input, .field select, .field textarea{
      width: 100%;
      border: 1px solid rgba(15,23,42,.14);
      border-radius: 12px;
      padding: 12px 12px;
      background: rgba(255,255,255,.92);
      outline: none;
      font-weight: 750;
      color: rgba(15,23,42,.86);
    }
    .field textarea{ resize: vertical; min-height: 92px; }
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(37, 99, 235, .60);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, .16);
    }
    .note{
      margin: -2px 0 0;
      color: rgba(15,23,42,.55);
      font-size: 12px;
      font-weight: 750;
    }

    /* Sections */
    .section{
      padding: 70px 0;
    }
    .section-soft{
      background: linear-gradient(180deg, #ffffff, var(--surface-2));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .section-head{
      text-align: center;
      margin-bottom: 28px;
    }
    .section-head h2{
      margin: 0 0 8px;
      font-size: 30px;
      letter-spacing: -0.4px;
    }
    .subtitle{
      margin: 0 auto;
      max-width: 72ch;
      color: rgba(15,23,42,.65);
      font-weight: 650;
    }
    .section-subhead{
      margin: 26px 0 18px;
      text-align: center;
    }
    .section-subhead h3{
      margin: 0 0 8px;
      font-size: 24px;
      letter-spacing: -0.3px;
    }
    .section-subhead .subtitle{
      margin: 0 auto;
      max-width: 88ch;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      align-items: start;
    }
    .p{ color: rgba(15,23,42,.72); font-weight: 600; }
    .panel{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-soft);
    }
    .panel h3{ margin: 0 0 10px; }
    .bullets{ margin: 0; padding-left: 18px; color: rgba(15,23,42,.72); font-weight: 650; }
    .bullets li{ margin: 8px 0; }
    .panel-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

    /* Cards */
    .cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .card{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .cards-secondary{ margin-top: 6px; }
    .card h3{ margin: 0 0 8px; font-size: 16px; letter-spacing: -.2px; }
    .card p{ margin: 0; color: rgba(15,23,42,.68); font-weight: 600; }

    /* Solutions */
    .solution-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .solution{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .solution h3{ margin: 0 0 8px; }
    .solution ul{ margin: 0; padding-left: 18px; color: rgba(15,23,42,.72); font-weight: 650; }
    .solution li{ margin: 8px 0; }
    .benefit{ margin-top: 10px; color: rgba(15,23,42,.70); font-weight: 650; }

    .cta-row{
      margin-top: 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(37, 99, 235, .22);
      background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(0, 183, 214, .10));
    }
    .cta-title{ margin:0 0 6px; }
    .cta-sub{ margin:0; color: rgba(15,23,42,.65); font-weight: 650; }

    /* Productos */
    .product-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .product-item{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .product-item h3{ margin: 0 0 8px; }
    .product-item p{ margin:0; color: rgba(15,23,42,.68); font-weight: 600; }

    .products-cta{
      margin-top: 16px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    /* Proceso + Cobertura unido */
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .steps{
      display:grid;
      gap: 12px;
    }
    .step{
      display:grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
    }
    .step-num{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      font-weight: 950;
      color: rgba(5,59,50,.95);
      background: linear-gradient(135deg, rgba(37, 99, 235, .25), rgba(0, 183, 214, .25));
      border: 1px solid rgba(37, 99, 235, .22);
    }
    .step h3{ margin: 0 0 4px; font-size: 15px; }
    .step p{ margin:0; color: rgba(15,23,42,.66); font-weight: 600; }

    .chips{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 10px 0 14px;
    }
    .chip{
      padding: 10px 12px;
      border-radius: 999px;
      font-weight: 850;
      font-size: 13px;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.85);
      color: rgba(15,23,42,.78);
    }

    .coverage-card{
      margin-top: 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
    }
    .coverage-card h3{ margin: 0 0 6px; }
    .coverage-card p{ margin: 0; color: rgba(15,23,42,.66); font-weight: 600; }

    /* FAQ */
    .faq{
      max-width: 920px;
      margin: 0 auto;
      display:grid;
      gap: 12px;
    }
    .faq-item{
      border-radius: var(--radius);
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    .faq-q{
      width: 100%;
      text-align: left;
      border: 0;
      background: transparent;
      padding: 16px 16px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 900;
      color: rgba(15,23,42,.86);
    }
    .faq-q span.icon{
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(37, 99, 235, .18), rgba(0, 183, 214, .18));
      border: 1px solid rgba(37, 99, 235, .18);
      color: rgba(5,59,50,.95);
      font-size: 18px;
      font-weight: 950;
      flex: 0 0 auto;
      transition: transform .15s ease;
    }
    .faq-a{
      display:none;
      padding: 0 16px 16px;
      color: rgba(15,23,42,.68);
      font-weight: 650;
    }
    .faq-item.active .faq-a{ display:block; }
    .faq-item.active .faq-q span.icon{ transform: rotate(45deg); }

    /* Contacto + mapa */
    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .contact-cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 14px 0;
    }
    .contact-card{
      padding: 12px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
    }
    .label{ display:block; font-size: 12px; font-weight: 900; color: rgba(15,23,42,.60); margin-bottom: 4px; }
    .value{ font-weight: 900; color: rgba(15,23,42,.86); }
    .contact-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
    .map{
      margin-top: 14px;
      border-radius: var(--radius);
      overflow:hidden;
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: var(--shadow-soft);
      background: #fff;
    }
    .map iframe{
      width:100%;
      height: 280px;
      border:0;
      display:block;
    }

    /* Footer */
    .footer{
      padding: 28px 0;
      border-top: 1px solid var(--line);
      background: #0b1220;
      color: rgba(255,255,255,.86);
    }
    .footer-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
    }
    .footer-left{ display:flex; align-items:center; gap: 12px; }
    .footer-logo{ width: 40px; height: 40px; object-fit: contain; }
    .footer-title{ font-weight: 950; letter-spacing:.3px; }
    .footer-sub{ font-size: 12px; color: rgba(255,255,255,.62); font-weight: 650; }
    .footer-social{ display:flex; gap: 10px; align-items:center; justify-content:flex-end; }
    .footer-social img{ width: 18px; height: 18px; opacity:.8; }
    .footer-social a:hover img{ opacity:1; }
    .footer-copy{ margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.60); font-weight: 650; text-align:right; }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: 1fr; }
      .product-list{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .contact-cards{ grid-template-columns: 1fr; }
      .coverage-card{ flex-direction: column; align-items: stretch; }
      .cta-row{ flex-direction: column; align-items: stretch; }
      .cards{ grid-template-columns: 1fr; }
    }
    @media (max-width: 860px){
      .nav{ display:none; }
      .nav-toggle{ display:inline-block; }
      .header-social{ display:none; }
      .field-row{ grid-template-columns: 1fr; }
      .footer-inner{ flex-direction: column; align-items: flex-start; }
      .footer-copy{ text-align:left; }
    }

/* ===== WhatsApp button (Header CTA) ===== */
.btn-whatsapp{
  background: var(--whatsapp);
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  box-shadow: var(--shadow-soft);
}

    .split-title{ margin: 0 0 12px; }
.btn-whatsapp:hover{ filter: saturate(1.05); }
.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp .icon{
  width: 18px;
  height: 18px;
  display: inline-block;
}

.clients-wrap{
  text-align: center;
}
.logo-marquee{
  margin: 22px auto 0;
  max-width: 980px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
}
.logo-track{
  display:flex;
  align-items:center;
  gap: 56px;
  width: max-content;
  padding: 18px 32px;
  animation: marquee 18s linear infinite;
}
.logo-marquee:hover .logo-track{ animation-play-state: paused; }

.client-logo{
  height: 46px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .92;
  filter: saturate(1.0);
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
  user-select: none;
  pointer-events: auto;
}
.client-logo:hover{
  transform: translateY(-2px);
  opacity: 1;
  filter: saturate(1.08);
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 640px){
  .logo-track{ gap: 40px; padding: 14px 22px; animation-duration: 20s; }
  .client-logo{ height: 38px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
  .logo-marquee{ overflow-x: auto; }
  .logo-track{ padding-bottom: 22px; }
}


/* ===== Gradient text (hero) ===== */
.gradient-text{
  background: linear-gradient(90deg, var(--brand-1) 0%, var(--brand-2) 45%, var(--brand-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== SVG icon sizing (single source of truth) ===== */
.icon-svg{
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}
.btn-compact .icon-svg{ width: 16px; height: 16px; }
.wa-float .icon-svg{ width: 22px; height: 22px; }

/* Make WhatsApp bubble stroke crisp */
.wa-icon path[stroke]{
  stroke-linecap: round;
  stroke-linejoin: round;
  /* Un trazo un poco más grueso ayuda a que se vea “definido” en pantallas chicas */
  stroke-width: 2.2;
}



/* =========================
   v8 refinements (buttons + icons + values)
   ========================= */

/* Buttons: elegant white with outline */
.btn-primary{
  background:#ffffff;
  color: var(--brand-2);
  border-color: color-mix(in srgb, var(--brand-2) 55%, transparent);
  box-shadow: none;
}
.btn-primary:hover{
  background: var(--brand-2);
  color:#ffffff;
  border-color: var(--brand-2);
}

/* Outline buttons use brand tone (not gray) */
.btn-outline{
  background:#ffffff;
  color: var(--brand-2);
  border-color: color-mix(in srgb, var(--brand-2) 45%, transparent);
}
.btn-outline:hover{
  background: color-mix(in srgb, var(--brand-2) 10%, #ffffff);
  border-color: color-mix(in srgb, var(--brand-2) 70%, transparent);
}

/* WhatsApp buttons: white with green outline; hover fills green */
.btn-whatsapp{
  background:#ffffff;
  color: var(--whatsapp);
  border-color: color-mix(in srgb, var(--whatsapp) 55%, transparent);
  --wa-glyph: #ffffff;
  box-shadow: none;
}
.btn-whatsapp:hover{
  background: var(--whatsapp);
  color: #ffffff;
  border-color: var(--whatsapp);
  --wa-glyph: var(--whatsapp);
}

/* Floating WhatsApp: keep green circle, crisp icon */
.wa-float{
  background: var(--whatsapp);
  color: #ffffff;
  --wa-glyph: var(--whatsapp);
}
.wa-icon{ shape-rendering: geometricPrecision; }

/* Panel CTA: smaller and side-by-side */
.panel-cta{
  display:flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.panel-cta .btn{
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 850;
  flex: 1 1 0;
}
@media (max-width: 560px){
  .panel-cta{ flex-wrap: wrap; }
  .panel-cta .btn{ flex: 1 1 100%; }
}

/* Values (replace coverage card) */
.values-card{
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.values-title{
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.values{
  display:grid;
  gap: 14px;
}
.value-item{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.value-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--brand-2) 10%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--brand-2) 28%, transparent);
  color: var(--brand-2);
}
.value-icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.value-name{
  font-weight: 950;
  letter-spacing: .6px;
  color: color-mix(in srgb, var(--brand-3) 90%, #0f172a);
  margin-bottom: 4px;
}
.value-text{
  color: rgba(15,23,42,.68);
  font-weight: 650;
}


/* =========================
   v11 — Palette + WhatsApp icon clarity
   ========================= */

.wa-icon.wa-svg{
  width: 18px;
  height: 18px;
  display:inline-block;
  vertical-align: -3px;
  flex: 0 0 18px;
  color: currentColor;
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  color:#ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(2,132,199,.18);
}

.btn-outline{
  background:#ffffff;
  color: var(--brand-2);
  border-color: color-mix(in srgb, var(--brand-2) 45%, transparent);
}

.btn-whatsapp{
  background: var(--whatsapp) !important;
  color:#ffffff !important;
  border-color: var(--whatsapp) !important;
  box-shadow: 0 12px 28px rgba(34,197,94,.18);
}

/* Floating WhatsApp */
.wa-float{
  background: var(--whatsapp);
  color:#ffffff;
}

/* Coverage full width below process+values */
.coverage-block{
  margin-top: 8px;
  padding-top: 6px;
}

/* Hero CTA alignment: keep buttons neat */
.hero-actions, .panel-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

/* WhatsApp icon image (buttons + floating) */
.wa-img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.btn-lg .wa-img{ width: 20px; height: 20px; }
.btn-compact .wa-img{ width: 18px; height: 18px; }
.wa-float .wa-img{ width: 26px; height: 26px; }

.wa-float{
  padding: 0;
  max-width: 56px;
  max-height: 56px;
  overflow: hidden;
}

@media (max-width: 560px){
  .wa-float{
    width: 48px;
    height: 48px;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .wa-float .wa-img{ width: 22px; height: 22px; }
}

@media (max-width: 640px){
  html, body{ overflow-x: hidden; }
}

