/* =========================================
   VARIABLES / BASE
========================================= */
:root{
  --bg: #0b0d10;
  --text: #f3f5f7;
  --muted: #b7c0cc;

  --red: #e11d2e;
  --red-hover: #c91525;

  --border: rgba(255,255,255,0.10);

  --container: 1120px;
  --nav-h: 76px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

a{ color: inherit; text-decoration: none; }

/* =========================================
   HEADER / NAVBAR
========================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(11,13,16,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}

.nav-wrap{
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
}

.brand-logo{
  height: 34px;
  width: auto;
  display: block;
}

/* Menú desktop */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link{
  font-weight: 500;
  color: var(--text);
  opacity: 0.9;
  padding: 10px 8px;
  border-radius: 10px;
}

.nav-link:hover{
  opacity: 1;
  background: rgba(255,255,255,0.06);
}

/* =========================================
   NAV TOGGLE: "+" -> "X"
   (por defecto oculto, se muestra en mobile)
========================================= */
.nav-toggle{
  display: none; /* se activa en media query */
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: background 0.15s ease;
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.05);
}

/* IMPORTANTE: spans visibles como líneas centradas */
.nav-toggle-line{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;              /* un poco más largo */
  height: 3px;              /* más grueso */
  background: var(--text);   /* rojo del branding */
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.nav-toggle.is-open .nav-toggle-line{
  background: var(--red-hover);
}

/* Línea horizontal */
.nav-toggle-line:nth-child(1){
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Línea vertical para formar "+" */
.nav-toggle-line:nth-child(2){
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Abierto => "X" */
.nav-toggle.is-open .nav-toggle-line:nth-child(1){
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-line:nth-child(2){
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================
   BOTONES
========================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--red);
  color: #fff;
}
.btn-primary:hover{ background: var(--red-hover); }

.btn-outline{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover{ background: rgba(255,255,255,0.06); }

.btn-whatsapp{
  background: transparent;
  border-color: var(--red);
  color: var(--text);
}
.btn-whatsapp:hover{
  background: rgba(225, 29, 46, 0.14);
}

.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  flex: 0 0 auto;
}
.icon-btn:hover{ background: rgba(255,255,255,0.07); }

/* =========================================
   HERO VIDEO
========================================= */
.hero{
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  display: flex;
  align-items: center;
  padding: 56px 0;
  overflow: hidden;
}

.hero-video .hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay oscuro sólido (sin degradado) */
.hero-video .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}

.hero-inner{
  position: relative;
  z-index: 2;
}

.hero-content{
  max-width: 720px;
}

.hero-kicker{
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 12px;
}

.hero-title{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.accent{ color: var(--red); }

.hero-subtitle{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

/* Acciones: por defecto en una línea y con wrap (desktop) */
.hero-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================
   SECCIONES PLACEHOLDER
========================================= */
.section{
  padding: 72px 0;
  border-top: 1px solid var(--border);
  background: #0b0d10;
}

.section-title{
  margin: 0 0 10px;
  font-size: 28px;
}

.section-text{
  margin: 0;
  color: var(--muted);
}

/* =========================================
   RESPONSIVE
========================================= */

/* Menú móvil */
@media (max-width: 860px){
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav{
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px 20px 18px;
    background: rgba(11,13,16,0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open{
    display: flex;
  }

  .nav-link{
    padding: 12px 10px;
  }

  .btn-whatsapp{
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
}

/* Móvil: 3 botones en la MISMA línea */
@media (max-width: 520px){
  .hero{
    padding: 40px 0;
  }

  .hero-actions{
    flex-wrap: nowrap;        /* todos en una línea */
    gap: 10px;
    align-items: center;
  }

  /* Botones un poco más compactos para que quepan */
  .hero-actions .btn{
    padding: 11px 12px;
    font-size: 14px;
  }

  /* Icono Facebook más discreto */
  .hero-actions .icon-btn{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

/* Extra pequeño: por si alguien trae pantalla muy angosta,
   bajamos aún más el tamaño para intentar mantener la línea. */
@media (max-width: 380px){
  .hero-actions{
    gap: 8px;
  }

  .hero-actions .btn{
    padding: 10px 10px;
    font-size: 13px;
  }

  .hero-actions .icon-btn{
    width: 38px;
    height: 38px;
  }
}


/* =========================================
   FEATURES / BENEFICIOS
========================================= */
.features{
  padding: 76px 0;
  border-top: 1px solid var(--border);
  background: #0b0d10;
}

.features-head{
  max-width: 760px;
  margin-bottom: 26px;
}

.features-title{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.features-subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.feature-card{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 18px 16px;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.feature-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
}

.feature-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 46, 0.35);
  background: rgba(225, 29, 46, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon i{
  color: var(--red);
  font-size: 18px;
}

.feature-name{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.feature-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* CTA */
.features-cta{
  margin-top: 20px;
}

.features-cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
  border: 1px solid rgba(225, 29, 46, 0.30);
  background: rgba(225, 29, 46, 0.08);
  padding: 16px;
}

.features-cta-title{
  margin: 0 0 6px;
  font-size: 16px;
}

.features-cta-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.features-cta-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .features{
    padding: 60px 0;
  }

  .features-grid{
    grid-template-columns: 1fr;
  }

  .features-cta-box{
    flex-direction: column;
    align-items: stretch;
  }

  .features-cta-actions .btn{
    width: 100%;
  }
}


/* =========================================
   PRECIOS
========================================= */
.pricing{
  padding: 78px 0;
  border-top: 1px solid var(--border);
  background: #0f1318; /* gris oscuro más claro que el fondo principal */
}

.pricing-head{
  max-width: 760px;
  margin-bottom: 24px;
}

.pricing-title{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.pricing-subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.price-card{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  padding: 18px 16px;

  /* NUEVO: estructura vertical */
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Empuja los botones hacia abajo */
.price-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  margin-top: auto;
}

.price-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.price-card-featured{
  border-color: rgba(225,29,46,0.45);
  background: rgba(0,0,0,0.22);
}

.price-top{
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 12px;
}

.price-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  margin: 0 0 10px;
}

.price-badge-featured{
  border-color: rgba(225,29,46,0.45);
  background: rgba(225,29,46,0.12);
}

.badge-mini{
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(225,29,46,0.45);
  background: rgba(225,29,46,0.14);
}

.price-name{
  margin: 0 0 6px;
  font-size: 18px;
}

.price-amount{
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-currency{
  font-size: 20px;
  opacity: 0.9;
  margin-right: 2px;
}

.price-period{
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}

.price-note{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.price-highlight{
  margin: 10px 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 12px;
}

.highlight-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
}
.highlight-row.muted{
  color: var(--muted);
  margin-top: 6px;
}

.price-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  opacity: 0.95;
  line-height: 1.45;
  font-size: 14px;
}

.price-list i{
  color: var(--red);
  margin-top: 3px;
}


/* =========================================
   MÉTODOS DE PAGO (layout limpio)
========================================= */
.pay-box{
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Columna izquierda: textos uno arriba del otro */
.pay-left{
  display: flex;
  flex-direction: column;
}

.pay-title{
  margin: 0 0 6px;
  font-size: 16px;
}

.pay-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Columna derecha: métodos */
.pay-methods{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pay-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.pay-pill i{
  color: var(--red);
}

/* Responsive: en móvil se apila */
@media (max-width: 700px){
  .pay-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .pay-methods{
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 980px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .pricing{
    padding: 62px 0;
  }

  .price-actions .btn{
    width: 100%;
  }
}


@media (max-width: 700px){
  /* Contenedor de pago: más aire y orden */
  .pay-box{
    gap: 12px;
    padding: 16px;
  }

  /* Métodos en formato lista limpia */
  .pay-methods{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: initial; /* evita rarezas */
  }

  /* Pills como "cards" full-width */
  .pay-pill{
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 14px; /* menos “pastilla”, más pro en móvil */
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.14);
  }

  /* Ícono con ancho fijo para alinear textos */
  .pay-pill i{
    width: 18px;
    text-align: center;
    margin-top: 0;
  }
}

/* =========================================
   CONTENIDO (TABS PRO)
========================================= */
.content-tabs-section{
  padding: 76px 0;
  border-top: 1px solid var(--border);
  background: #0b0d10;
}

.content-head{
  max-width: 860px;
  margin-bottom: 16px;
}

.content-title{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.content-subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Tabs */
.content-tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 18px;
}

.tab-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
  white-space: nowrap;
}
.tab-btn:active{ transform: translateY(1px); }
.tab-btn i{ color: var(--red); }

.tab-btn:hover{
  background: rgba(255,255,255,0.06);
}

.tab-btn.is-active{
  border-color: rgba(225,29,46,0.45);
  background: rgba(225,29,46,0.10);
}

/* Panels */
.tab-panel{ display: none; }
.tab-panel.is-open{ display: block; }

.content-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.content-card{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 18px 16px;

  display: flex;
  flex-direction: column;
  height: 100%;

  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.content-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

.content-card-title{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  display: flex;
  gap: 10px;
  align-items: center;
}
.content-card-title i{ color: var(--red); }

.content-card-text{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Bullets */
.content-points{
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}

.content-points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  opacity: 0.95;
  line-height: 1.45;
  font-size: 14px;
}

.content-points i{
  color: var(--red);
  margin-top: 3px;
}

/* Chips */
.chips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  color: var(--text);
  opacity: 0.92;
  font-size: 12px;
  white-space: nowrap;
}

/* CTA */
.content-cta{
  margin-top: 18px;
}

.content-cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(225,29,46,0.30);
  background: rgba(225,29,46,0.08);
  padding: 16px;
}

.content-cta-title{
  margin: 0 0 6px;
  font-size: 16px;
}

.content-cta-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.content-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .content-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  /* Tabs scrolleables */
  .content-tabs{
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .content-tabs::-webkit-scrollbar{ height: 6px; }
  .content-tabs::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
  }

  .content-grid{
    grid-template-columns: 1fr;
  }

  .content-cta-box{
    flex-direction: column;
    align-items: stretch;
  }

  .content-cta-actions .btn{
    width: 100%;
  }
}

/* =========================================
   CONTACTO
========================================= */
.contact{
  padding: 76px 0;
  border-top: 1px solid var(--border);
  background: #0b0d10;
}

.contact-head{
  max-width: 860px;
  margin-bottom: 18px;
}

.contact-title{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.contact-subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.contact-card{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 18px 16px;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card-title{
  margin: 0 0 10px;
  font-size: 16px;
}

.contact-card-text{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* items */
.contact-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
}

.contact-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(225,29,46,0.35);
  background: rgba(225,29,46,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-icon i{
  color: var(--red);
  font-size: 18px;
}

.contact-label{
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-link{
  display: inline-block;
  font-weight: 800;
  margin: 0 0 4px;
}

.contact-note{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 10px 0 14px;
}

/* bullets */
.contact-bullets{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-bullet{
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  opacity: 0.95;
  font-size: 14px;
  line-height: 1.45;
}
.contact-bullet i{
  color: var(--red);
  margin-top: 3px;
}

.contact-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Form estilo */
.wa-form{
  display: grid;
  gap: 12px;
}

.field{
  display: grid;
  gap: 8px;
}

.field-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-input{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.16);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
}

.field-input:focus{
  border-color: rgba(225,29,46,0.40);
}

.field-textarea{
  resize: vertical;
  min-height: 110px;
}

.wa-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wa-note{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-actions .btn,
  .wa-actions .btn{
    width: 100%;
  }
}

/* =========================================
   SELECT DARK MODE (FORM CONTACTO)
========================================= */
.field-input{
  color-scheme: dark; /* ayuda a navegadores modernos */
}

/* Estilo base del select */
select.field-input{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(0,0,0,0.16);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  padding-right: 40px;
  cursor: pointer;
}

/* Opciones del desplegable */
select.field-input option{
  background: #0b0d10; /* mismo fondo oscuro del sitio */
  color: #ffffff;
}

/* Flechita personalizada (opcional, más pro) */
select.field-input{
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* =========================================
   FOOTER
========================================= */
.footer{
  border-top: 1px solid var(--border);
  background: #080a0d;
  padding: 54px 0 26px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}

.footer-logo-img{
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-desc{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
}

.footer-title{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  opacity: 0.9;
  font-size: 14px;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.footer-links a i{
  color: var(--red);
}

.footer-links a:hover{
  color: #ffffff;
  opacity: 1;
}

.footer-note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-legal{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   BOTÓN FLOTANTE WHATSAPP
========================================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 80;

  background: var(--red);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);

  transition: transform 0.12s ease, background 0.15s ease;
}

.wa-float:hover{
  background: var(--red-hover);
  transform: translateY(-2px);
}

.wa-float i{
  font-size: 22px;
}

/* En móvil no estorba tanto */
@media (max-width: 520px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}

/* =========================================
   OFFSET PARA ANCLAS (NAVBAR STICKY)
========================================= */
section[id]{
  scroll-margin-top: calc(var(--nav-h));
}