/* ================== HEADER (compartido) ================== */
:root{
  --brand:#2f5bff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --bg:#ffffff;
  --radius:999px;
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --max:1100px;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;color:var(--text);background:var(--bg)}
a{color:inherit;text-decoration:none}
button{font:inherit}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand-name{
  font-size:20px;
  font-weight:500;
  letter-spacing:.2px;
  color:var(--brand);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* NAV DESKTOP */
.nav-desktop{
  display:none;
  align-items:center;
  gap:18px;
}
.nav-desktop a{
  font-size:15px;
  color:var(--muted);
  padding:10px 8px;
  border-radius:10px;
}
.nav-desktop a:hover,
.nav-desktop a:focus-visible{
  color:var(--text);
  background:#f1f5f9;
  outline:none;
}

/* CTA (WhatsApp / Llamar) */
.cta{
  display:none;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:var(--radius);
  border:1px solid transparent;
  font-weight:600;
  font-size:14px;
  line-height:1;
  box-shadow:none;
}
.btn svg{width:18px;height:18px}
.btn-whatsapp{
  background:#eaf7ee;
  border-color:#bfe7cb;
  color:#0f7a2a;
}
.btn-call{
      
      border-color:#c7d7ff;
      color:white;
      background: #0f7a2a
    }
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible,
.btn-call:hover,
.btn-call:focus-visible{
  outline:none;
  filter:brightness(.98);
}

/* HAMBURGER MOBILE */
.hamburger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--brand);
}
.hamburger:focus-visible{
  outline:3px solid rgba(47,91,255,.25);
  outline-offset:2px;
}
.hamburger svg{width:22px;height:22px}

/* OVERLAY + PANEL MOBILE */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:60;
}
.menu-panel{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(86vw, 360px);
  background:#fff;
  border-left:1px solid var(--border);
  box-shadow:var(--shadow);
  transform:translateX(105%);
  transition:transform .25s ease;
  z-index:70;
  display:flex;
  flex-direction:column;
}
.menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}
.menu-title{
  font-size:16px;
  font-weight:600;
  color:var(--brand);
}
.menu-close{
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.menu-close:hover{background:#f8fafc}
.menu-close svg{width:20px;height:20px}

.menu-body{
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.menu-link{
  padding:12px 10px;
  border-radius:12px;
  color:var(--muted);
  font-size:16px;
}
.menu-link:hover,
.menu-link:focus-visible{
  outline:none;
  background:#f1f5f9;
  color:var(--text);
}
.menu-ctas{
  margin-top:10px;
  padding-top:12px;
  border-top:1px solid var(--border);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.menu-ctas .btn{
  justify-content:center;
  padding:12px 14px;
  font-size:15px;
}

/* OPEN STATE (cuando body tiene .menu-open) */
body.menu-open .menu-overlay{
  opacity:1;
  pointer-events:auto;
}
body.menu-open .menu-panel{
  transform:translateX(0);
}

/* DESKTOP BREAKPOINT */
@media (min-width: 900px){
  .hamburger{display:none}
  .nav-desktop{display:flex}
  .cta{display:flex}
}



:root{
      --brand:#2f5bff;
      --text:#0f172a;
      --muted:#64748b;
      --border:#e5e7eb;
      --bg:#ffffff;

      --btn-green:#16a34a;
      --btn-blue:#2563eb;

      --radius:999px;
      --shadow:0 10px 30px rgba(2,6,23,.08);
      --max:1100px;
    }

    *{box-sizing:border-box}
    body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;color:var(--text);background:var(--bg)}
    a{color:inherit;text-decoration:none}
    button{font:inherit}

    /* HEADER */
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(140%) blur(10px);
      border-bottom:1px solid var(--border);
    }

    .header-inner{
      max-width:var(--max);
      margin:0 auto;
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    /* Si quieres un ícono/logo, descomenta y pon un SVG/IMG dentro */
    /* .brand-mark{width:28px;height:28px;display:inline-flex} */

    .brand-name{
      font-size:20px;
      font-weight:500;
      letter-spacing:.2px;
      color:var(--brand);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    /* NAV DESKTOP */
    .nav-desktop{
      display:none;
      align-items:center;
      gap:18px;
    }
    .nav-desktop a{
      font-size:15px;
      color:var(--muted);
      padding:10px 8px;
      border-radius:10px;
    }
    .nav-desktop a:hover,
    .nav-desktop a:focus-visible{
      color:var(--text);
      background:#f1f5f9;
      outline:none;
    }

    /* CTA (WhatsApp / Llamar) */
    .cta{
      display:none;
      align-items:center;
      gap:10px;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:var(--radius);
      border:1px solid transparent;
      font-weight:600;
      font-size:14px;
      line-height:1;
      box-shadow:none;
    }
    .btn svg{width:18px;height:18px}

     .btn-whatsapp{
      background:#0f7a2a;
      border-color:white;
      color: white;
      
    }
    .btn-whatsapp:hover,
    .btn-whatsapp:focus-visible{
      outline:none;
      filter:brightness(.98);
    }

    .btn-call{
      
      border-color:#c7d7ff;
      color:white;
      background: #0f7a2a
    }
    .btn-call:hover,
    .btn-call:focus-visible{
      outline:none;
      filter:brightness(.98);
    }

    /* HAMBURGER MOBILE */
    .hamburger{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;height:44px;
      border-radius:12px;
      border:1px solid var(--border);
      background:#fff;
      color:var(--brand);
    }
    .hamburger:focus-visible{
      outline:3px solid rgba(47,91,255,.25);
      outline-offset:2px;
    }
    .hamburger svg{width:22px;height:22px}

    /* OVERLAY + PANEL MOBILE */
    .menu-overlay{
      position:fixed;
      inset:0;
      background:rgba(2,6,23,.45);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease;
      z-index:60;
    }

    .menu-panel{
      position:fixed;
      top:0;
      right:0;
      height:100%;
      width:min(86vw, 360px);
      background:#fff;
      border-left:1px solid var(--border);
      box-shadow:var(--shadow);
      transform:translateX(105%);
      transition:transform .25s ease;
      z-index:70;
      display:flex;
      flex-direction:column;
    }

    .menu-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border-bottom:1px solid var(--border);
    }

    .menu-title{
      font-size:16px;
      font-weight:600;
      color:var(--brand);
    }

    .menu-close{
      width:44px;height:44px;
      border-radius:12px;
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }
    .menu-close:hover{background:#f8fafc}
    .menu-close svg{width:20px;height:20px}

    .menu-body{
      padding:14px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .menu-link{
      padding:12px 10px;
      border-radius:12px;
      color:var(--muted);
      font-size:16px;
    }
    .menu-link:hover,
    .menu-link:focus-visible{
      outline:none;
      background:#f1f5f9;
      color:var(--text);
    }

    .menu-ctas{
      margin-top:10px;
      padding-top:12px;
      border-top:1px solid var(--border);
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .menu-ctas .btn{
      justify-content:center;
      padding:12px 14px;
      font-size:15px;
    }

    /* OPEN STATE (cuando body tiene .menu-open) */
    body.menu-open .menu-overlay{
      opacity:1;
      pointer-events:auto;
    }
    body.menu-open .menu-panel{
      transform:translateX(0);
    }

    /* DESKTOP BREAKPOINT */
    @media (min-width: 900px){
      .hamburger{display:none}
      .nav-desktop{display:flex}
      .cta{display:flex}
    }

    /*boton flotante */
    /* ================== CSS (solo botones flotantes) ================== */
:root{
  --green:#16a34a;
  --blue:#2563eb;
}

/* Contenedor flotante */
/* Si los quieres en el LADO IZQUIERDO cambia right por left (ya lo dejo en left como pediste) */
.float-actions{
  position:fixed;
 right: 16px;     /* <-- lado derecho */
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:80;
}

/* Botón circular */
.fab{
  width:56px;
  height:56px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 28px rgba(2,6,23,.18);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  backdrop-filter: blur(6px);
}
.fab svg{width:24px;height:24px}

.fab-call{background: var(--green)}
.fab-wa{background: var(--green)}

.fab:focus-visible{
  outline:3px solid rgba(47,91,255,.25);
  outline-offset:3px;
}

/* Accesibilidad: texto solo para lectores */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/*Nuestra historia, Nuestra filosofía,Únete a nuestros clientes satisfechos*/
img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    .container{max-width:var(--max);margin:0 auto;padding:0 16px}

    /* ===== Nuestra historia (centrado) ===== */
    .story{
      padding:54px 0 40px;
      text-align:center;
    }
    .story h1{
      margin:0;
      font-size:48px;
      line-height:1.08;
      font-weight:500;
      letter-spacing:.2px;
      color:var(--text);
    }
    .story p{
      margin:14px auto 0;
      max-width:92ch;
      color:var(--muted);
      font-size:16px;
    }

    /* ===== Nuestra filosofía (2 columnas con foto izquierda) ===== */
    .philosophy{
      padding:22px 0 44px;
    }
    .philo-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:22px;
      align-items:start;
    }

    .philo-photo{
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid rgba(229,231,235,.7);
      background:#fff;
    }
    .philo-photo img{
      width:100%;
      height:auto;
      aspect-ratio: 16 / 11; /* similar a captura */
      object-fit:cover;
    }

    .philo-text h2{
      margin:0;
      font-size:42px;
      line-height:1.12;
      font-weight:500;
      letter-spacing:.2px;
      color:var(--text);
    }
    .philo-text p{
      margin:12px 0 0;
      color:var(--muted);
      font-size:16px;
      max-width:80ch;
    }

    /* ===== CTA “Únete...” (centrado con 2 botones) ===== */
    .join{
      padding:56px 0 72px;
      text-align:center;
    }
    .join h2{
      margin:0;
      font-size:46px;
      line-height:1.12;
      font-weight:500;
      letter-spacing:.2px;
      color:var(--text);
    }
    .join p{
      margin:12px auto 0;
      max-width:90ch;
      color:var(--muted);
      font-size:16px;
    }

    .join-actions{
      margin-top:22px;
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 22px;
      border-radius:var(--pill);
      font-weight:800;
      font-size:14px;
      border:1px solid transparent;
      white-space:nowrap;
      min-width:160px;
    }

    .btn-primary{
      background:#0b1220;   /* botón oscuro como captura */
      color:#fff;
      box-shadow:0 14px 28px rgba(2,6,23,.12);
    }
    .btn-outline{
      background:#fff;
      color:#0b1220;
      border-color:#0b1220;
    }

    .btn:focus-visible{
      outline:3px solid rgba(47,91,255,.25);
      outline-offset:3px;
    }

    /* ===== Responsive ===== */
    @media (min-width: 900px){
      .story{padding:66px 0 48px}
      .story h1{font-size:60px}
      .story p{font-size:17px}

      .philosophy{padding:26px 0 58px}
      .philo-grid{
        grid-template-columns: 1.05fr 1fr; /* foto izquierda, texto derecha */
        gap:34px;
        align-items:center;
      }
      .philo-text h2{font-size:54px}
      .philo-text p{font-size:17px}

      .join{padding:76px 0 92px}
      .join h2{font-size:56px}
      .join p{font-size:17px}
    }

    







/*foother*/

a{color:inherit;text-decoration:none}
    .container{max-width:var(--max);margin:0 auto;padding:0 16px}

    /* FOOTER */
    .site-footer{
      border-top:1px solid var(--border);
      padding:34px 0 18px;
      background:#fff;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:26px;
      align-items:start;
    }

    .footer-brand h3{
      margin:0 0 10px;
      font-weight:500;
      font-size:20px;
      color:var(--brand);
      letter-spacing:.2px;
    }

    .footer-brand p{
      margin:0 0 14px;
      color:var(--muted);
      max-width:42ch;
      font-size:15px;
    }

    .footer-contact{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:6px;
    }

    .contact-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:15px;
      width:max-content;
      padding:6px 0;
    }
    .contact-link:hover,
    .contact-link:focus-visible{
      color:var(--text);
      outline:none;
    }
    .contact-link svg{width:18px;height:18px;color:var(--muted)}

    .footer-col h4{
      margin:0 0 12px;
      font-size:13px;
      letter-spacing:.14em;
      font-weight:800;
      color:var(--text);
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .footer-links a{
      color:var(--muted);
      font-size:15px;
      padding:6px 0;
      width:max-content;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:var(--text);
      outline:none;
    }

    .footer-bottom{
      margin-top:22px;
      padding-top:16px;
      border-top:1px solid var(--border);
      text-align:center;
      color:var(--muted);
      font-size:14px;
    }

    /* Desktop: 3 columnas como en la captura (sin "Conecta") */
    @media (min-width: 900px){
      .site-footer{padding:44px 0 20px}
      .footer-grid{
        grid-template-columns: 1.2fr 1fr 1fr;
        gap:34px;
      }
      .footer-bottom{margin-top:26px}
    }