:root{
  --color-bg:        #161410;
	--color-text1:      #3658c1;
	--color-text2:      #b0c3ff;
	--color-text3:      #ffffff;
  --color-header-bg: #000000;
  --color-header-fg: #ffffff;

  --color-sec1-bg:   #d9dbe1;
  --color-sec1-fg:   #000000;

  --color-sec2-bg:   #3658c1;
  --color-sec2-fg:   #ffffff;
  
  --color-sec3-bg:   #000543;
  --color-sec3-fg:   #ffffff;

  --color-footer-bg: #333645;
  --color-footer-fg: #50cca2;

  --color-active:    #75b0e2;

  --header-height:   72px;
  --container-w:     1400px;
}

*{ box-sizing: border-box; font-family: 'Montserrat', sans-serif;}

html, body {
  margin: 0;
  padding: 0;

}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


body {
  font-family: Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text3);
  line-height: 1.5;
}

h1, H2 { color: var(--color-text2);}
h2 { font-size: 3vw;}

.center_title {text-align: center;}



.container{
  width: min(100%, var(--container-w));
  margin-inline: auto;
  padding: 24px 16px;
}

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* =========================
   Header fijo
   ========================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--color-header-bg);
  color: var(--color-header-fg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, var(--container-w));
  margin-inline: auto;
  padding: 0 12px;
}
.contact{background: dimgrey;}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.brand-logo{
  height: calc(var(--header-height) - 2vh);
  width: 15vw;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}
.brand-text{
  font-weight: 700;
  font-size: 18px;
}

/* Nav (desktop) */
.nav{
  margin-left: 28px;
  flex: 1 1 auto;
  display: none; /* visible en >= 992px */
}
.nav-list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0; padding: 0;
}
.nav-link{
  text-decoration: none;
  color: var(--color-header-fg);
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover{
  color: var(--color-active);
}
.nav-link.active{
  color: var(--color-active);
  background: rgba(7,51,88,0.08);
}

/* CTA + idioma + login (desktop) */
.header-cta{
  display: none; /* visible en >= 992px */
  align-items: center;
  gap: 12px;
}

.lang-switch{
  display: inline-flex;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  overflow: hidden;
  width: 130px;
}


.lang-btn{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-btn.active{
  background: rgba(0,0,0,0.08);
}

.flag{ display: inline-block; }

.btn{
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  padding: 10px 14px;
  
}
.btn-primary{
  background: var(--color-sec2-bg);
  color: var(--color-sec2-fg);
}
.btn-primary:hover{ filter: brightness(1.05); }

.login-link{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-header-fg);
  text-decoration: none;
  font-weight: 700;
}
.login-link:hover{ color: var(--color-active); }
.icon-user{ fill: currentColor; }

/* Hamburguesa (mobile) */
.hamburger{
  margin-left: auto;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 30px;
  display: inline-flex; flex-direction: column; gap: 4px;
  cursor: pointer;
}
.hamburger span{
  display: block;
  width: 40px; height: 7px; background: var(--color-active);
  border-radius: 10px;
}

/* Offcanvas mobile */
.offcanvas-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  display: grid;
  grid-template-columns: 70vw !important; 
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1200;
}
.offcanvas-overlay.open{
  opacity: 1; pointer-events: auto;
}
.offcanvas{
  background: var(--color-header-bg);
  height: 100vh;
  padding: 16px;
  position: relative;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.offcanvas-overlay.open .offcanvas{
  transform: translateX(0%);
}
.offcanvas-close{
  position: absolute; top: 8px; right: 12px;
  font-size: 78px; line-height: 1;
  appearance: none; border: 0; background: dimgray; cursor: pointer; color: antiquewhite;
}
.offcanvas-nav ul{
  list-style: none; margin: 32px 0; padding: 0;
  display: grid; gap: 10px;
}
.offcanvas-nav a{
  text-decoration: none;
  color: var(--color-header-fg);
  font-weight: 700;
  font-size: 55px;
  padding: 10px 8px;
  border-radius: 8px;
}
.offcanvas-nav a.active{
  color: var(--color-active);
  background: rgba(7,51,88,0.08);
}
.offcanvas-footer{
  display: grid;
  gap: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 60px;
}
.offcanvas-footer > a {
  font-size: 42px;
}


.no-scroll{ overflow: hidden; }

/* =========================
   Main / Secciones
   ========================= */
main{
  padding-top: var(--header-height); /* empuja el contenido bajo el header */
}

.section{
  scroll-margin-top: calc(var(--header-height) - 1px);
  padding: 56px 0;
}
.section.alt{
  background: rgba(255,255,255,0.35);
}
.section.bottom {
  background: var(--color-sec3-bg);
}
.section h2{
  margin-top: 0;
  margin-bottom: 8px;
}
.section p{
  margin-top: 0;
  opacity: 0.9;
}


.flag {
	font-size: 18px;
}
.lang-code {
	font-size: 12px;
}

.flag-icon{
  width: 20px; height: 14px;
  display: inline-block;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
}

/* España (rojo-amarillo-rojo) */
.flag-es{
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='60' height='42' viewBox='0 0 60 42'>\
    <rect width='60' height='42' fill='%23c60b1e'/>\
    <rect y='10' width='60' height='22' fill='%23ffc400'/>\
  </svg>");
}

/* Reino Unido simplificado (Union Jack) */
.flag-en{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 42'%3E%3Crect width='60' height='42' fill='%2300247d'/%3E%3Cpath d='M0 0 L60 42 M60 0 L0 42' stroke='%23fff' stroke-width='8' fill='none'/%3E%3Cpath d='M0 0 L60 42 M60 0 L0 42' stroke='%23cf142b' stroke-width='4' fill='none'/%3E%3Cpath d='M30 0 V42 M0 21 H60' stroke='%23fff' stroke-width='14' fill='none'/%3E%3Cpath d='M30 0 V42 M0 21 H60' stroke='%23cf142b' stroke-width='8' fill='none'/%3E%3C/svg%3E");
}

/* =========================
   Footer
   ========================= */
.site-footer{
  background: var(--color-footer-bg);
  color: var(--color-footer-fg);
  margin-top: 24px;
}
.site-footer p{
  margin: 0;
  padding: 16px 0;
}

/* =========================
   Responsivo
   ========================= */
@media (min-width: 992px){
  .nav{ display: block; }
  .header-cta{ display: inline-flex; }
  .hamburger{ display: none; }
}

@media (max-width: 992px){
	* { padding-left: 1%; padding-right: 1%; }
  :root{ --header-height: 82px; }
  .site-header{ height: 150px;}
  .header-inner {margin-inline: inherit;}
  .brand-logo {width: 70vw;height: 100%;}
  .brand-text { font-size: 20px; }

  /* Si querés, ajustes puntuales */
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }

  .btn        { font-size: 4vw; }
  .login-link { font-size: 4.5vw; }
}


/* ===== Servicio (layout + responsive) ===== */
.servicio .srv-row{
display: flex;
align-items: center;
margin-bottom: 10%;
margin-bottom: 5%;
}
.servicio .srv-text{ flex: 1 1 65%; }
.servicio .srv-media{ flex: 1 1 35%; }
.srv-text > p {
	font-size: x-large;
}
.srv-cta {
	display: flex;
    align-items: center;
    justify-content: center;
}
.srv-cta > a {
    margin-left: 3%;  
    margin-right: 3%;
}
/* Row 2 con 70/30 en desktop */
.servicio .row-2 .srv-text{ flex-basis: 70%; }
.servicio .row-2 .srv-media{ flex-basis: 30%; }
.row-2, .row-1{
	margin-bottom: 9% !important;
}

.servicio .srv-media img{
width: 100%;
height: auto;
display: block;
}


/* Steps */
.servicio .srv-steps{
padding-left: 18px;
margin: 12px 0 0;
}
.servicio .srv-steps li{ 
margin-bottom: 8px; 
font-size: large;
}


/* Cards 3 columnas */
.servicio .srv-subtitle{ margin: 46px 0 16px; text-align: center; }
.servicio .srv-cards{
display: grid;
grid-template-columns: repeat(3, minmax(0,1fr));
gap: 20px;
}
.servicio .srv-card{
background: rgba(255,255,255,0.1);
border: 2px solid rgba(0,0,0,0.40);
border-radius: 14px;
padding: 0% 3% 7% 3%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.srv-card > p{
  text-align: center;
}
.servicio .srv-card > h3 {
text-align: center;
}
.servicio .srv-card h4{ margin: 0 0 6px; }
.servicio .srv-card p{ margin: 0 0 12px; }
.servicio .srv-card img{
width: 50%;
height: auto;
border-radius: 10px;
}
.servicio .row-3{
  position: relative;    /* z-index necesita position */
  isolation: isolate;    /* crea stacking context propio (evita “fugas”) */
  z-index: 1;
}
.servicio .row-3::before{
  content: "";
  position: absolute;
  inset: 0;              /* cubre toda la fila */
  z-index: -1;           /* detrás del contenido de row-3, pero por ENCIMA del canvas */
  background: var(--color-bg);   /* mismo fondo del sitio */
  opacity: 1;            /* si querés “vidrio”, bajá a 0.9 ~ 0.95 */
  /* opcional look “glass”: */
  /* backdrop-filter: blur(3px) brightness(.95); */
  border-radius: 12px;   /* si querés redondeo visual */
  /* si necesitás margen interior: usa inset: 8px en vez de 0 */
}

/* Responsive*/ 
@media (max-width: 992px){ 
.servicio .srv-row{ flex-direction: column; } 
.servicio .srv-text, .servicio .srv-media{ flex-basis: 100%; } 
.servicio .srv-cards{ grid-template-columns: 1fr; } 
.srv-text > p { font-size: inherit; } 
.srv-text > h1 { line-height: initial; }
.servicio .srv-steps li{ font-size: inherit;} 
.row-2, .row-1{ margin-bottom: 20% !important;}
}


/* Row 4: Cobertura */
.servicio .row-coverage{
  position: relative;
  isolation: isolate; /* evita que el canvas del fondo “se cuele” */
  padding: 20px 0;
  flex-direction: column;
}
.servicio .row-coverage::before{
  content:"";
  position: absolute; inset: 0;
  z-index: -1;                 /* debajo del contenido de la fila */
  background: var(--color-bg); /* tapete del color de fondo */
  opacity: 0.98;               /* puedes bajar a 0.94 si querés ver algo del fondo */
  border-radius: 12px;
}
.coverage-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.coverage-card{
  background: rgba(255, 255, 255, 0.1);                
  color: var(--color-text2);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px 14px 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.coverage-card h4{
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.coverage-card .doc{
  margin: 0 0 8px;
  opacity: .85;
  font-size: .95rem;
}
.cov-head{
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.badge{
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2px;
  margin-bottom: 8px;
}
.badge.ok{ 
background: var(--color-sec1-bg); color: var(--color-sec1-fg); }
.badge.na{
  background: #abaa6e;
  color:  var(--color-sec1-fg);
}
.flag-cov{
  width: 26px; height: 18px;
  display: inline-block;
  background-size: cover; background-position: center;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
}
/* AR */
.flag-ar{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%2300a3e0'/%3E%3Crect y='0.666' width='3' height='0.668' fill='%23ffffff'/%3E%3C/svg%3E");
}
/* CL */
.flag-cl{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect y='1' width='3' height='1' fill='%23d52b1e'/%3E%3Crect width='3' height='1' fill='%23ffffff'/%3E%3Crect width='1' height='1' fill='%230052b4'/%3E%3Cpolygon points='0.5,0.25 0.62,0.60 0.35,0.38 0.65,0.38 0.38,0.60' fill='%23ffffff'/%3E%3C/svg%3E");
}
/* CO */
.flag-co{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23fcd116'/%3E%3Crect y='1' width='3' height='0.5' fill='%2300349d'/%3E%3Crect y='1.5' width='3' height='0.5' fill='%23ce1126'/%3E%3C/svg%3E");
}
/* MX (simplificado) */
.flag-mx{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%2300663a'/%3E%3Crect x='1' width='1' height='2' fill='%23ffffff'/%3E%3Crect x='2' width='1' height='2' fill='%23ce1126'/%3E%3C/svg%3E");
}
/* Pasaporte (icono) */
.flag-passport{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Crect x='6' y='3' width='20' height='18' rx='2' ry='2' fill='%2300247d'/%3E%3Ccircle cx='16' cy='12' r='5' fill='%23ffd700'/%3E%3C/svg%3E");
}
/* Genérico (credencial) */
.flag-generic{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Crect x='3' y='5' width='26' height='14' rx='2' ry='2' fill='%23a7aab5'/%3E%3Crect x='6' y='8' width='10' height='3' fill='%23e9edf5'/%3E%3Crect x='6' y='12' width='18' height='2' fill='%23d6dbe6'/%3E%3C/svg%3E");
}
/* Responsive */
@media (max-width: 992px){
  .coverage-grid{ grid-template-columns: 1fr; }
  .coverage-card > p {
	text-align:left;}
  .servicio .row-coverage{
	align-items: stretch;}
}


/* ===== Beneficios ===== */


/* Anula el fondo rectangular de .section.alt SOLO en #beneficios */

#beneficios{
   background: linear-gradient(to bottom,  var(--color-bg), var(--color-sec3-bg));
}

.benefits-grid{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px 24px; /* filas / columnas */
}

.benefit{
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  line-height: 1.45;
  font-size: 1.05rem;
}

/* Check minimalista (SVG embebido) */
.check{
	display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  flex: 0 0 22px;
  background:
    /* ⬅️ tilde ARRIBA */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9.5 16.2 5.8 12.5l-1.4 1.4 5.1 5.1L20 8.5l-1.4-1.4z'/%3E%3C/svg%3E") center/14px 14px no-repeat,
    /* ⬅️ círculo ABAJO */
    radial-gradient(circle at 50% 50%, var(--color-sec2-bg) 0 99%, transparent 100%);
}

/* Resalta las palabras clave */
.benefits-grid strong{
  font-weight: 800;
}



/* Responsive */
@media (max-width: 992px){
  .benefits-grid{
    grid-template-columns: 1fr; /* 6 filas, 1 columna */
    gap: 12px 16px;
  }
  .benefit{ font-size: 1rem; }
  .benefit-text {    padding-left: 5% !important;}
  .check { width: 6vw !important; height: 6vw !important;}
}


/* ===== Developers (layout) ===== */
.developers .dev-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.developers .dev-col h2{ margin-top: 0; }

/* Pasos */
.dev-steps{
  margin: 10px 0 18px;
  padding-left: 18px;
}
.dev-steps li{ margin-bottom: 6px; }

/* Consola cURL */
.dev-console{
  background: #0b0e11;           /* negro profundo */
  color: #9effa0;                 /* verde terminal */
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
.console-toolbar{
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 8px 10px;
  background: #111827;           /* barra superior */
  border-bottom: 1px solid #1f2937;
  color: #cfd8dc;
}
.console-left{ display: inline-flex; align-items: center; gap: 8px; }
.console-dot{ width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.console-dot.red{ background: #ff5f56; }
.console-dot.yellow{ background: #ffbd2e; }
.console-dot.green{ background: #27c93f; }
.console-title{ font-weight: 700; font-size: 14px; }

.console-copy{
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: #cfd8dc; border: 1px solid #334155;
  border-radius: 8px; padding: 6px 10px; cursor: pointer; font-weight: 700;
}
.console-copy:hover{ background: rgba(255,255,255,.06); }
.dev-console pre{
  margin: 0; padding: 14px 16px;
  font-size: 14px; line-height: 1.5; white-space: pre; overflow: auto;
}

/* Callout (usa tu paleta sec1) */
.dev-callout{
  margin-top: 14px;
  background: var(--color-sec1-bg);
  color: var(--color-sec1-fg);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start;justify-content: center;
  
    margin-left: auto;
    margin-right: auto;
}
.dev-callout .callout-ico{ flex: 0 0 auto; }
.dev-callout p{ margin: 0; }

/* Lista Tecnología */
.dev-tech-list{
  list-style: none; padding: 0; margin: 10px 0 0;
  display: grid; gap: 10px;
}
.dev-tech-list li{
  display: grid; grid-template-columns: 22px auto; gap: 10px; align-items: flex-start;
}
.dev-li-ico{ color: var(--color-sec2-bg); }

/* Responsive */
@media (max-width: 992px){
  .developers .dev-grid{ grid-template-columns: 1fr; }
  .dev-tech-list li{
	align-items: baseline;
	}
	.callout-ico {display: none;}
}


/* ==== FIX: overflow horizontal solo en #developers ==== */
#developers, .developers { overflow-x: clip; } /* red de seguridad */

.developers .dev-grid { /* tu grid 2 col en desktop, 1 col en mobile */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 992px){
  .developers .dev-grid { grid-template-columns: 1fr; }
}

/* Clave: dejar que las columnas puedan encogerse dentro del grid */
.developers .dev-col,
.developers .dev-console { min-width: 0; }

/* El bloque de código no debe romper el layout */
.developers pre,
.developers code { max-width: 100%; }

.dev-console pre{
  overflow: auto;         /* scroll interno si hace falta */
  white-space: pre;       /* no forzar salto raro en código */
  font-size: clamp(12px, 3.5vw, 14px); /* baja tamaño en pantallas chicas */
}

/* Si la toolbar se aprieta en móviles, que pueda saltar de línea */
@media (max-width: 992px){
  .console-toolbar { flex-wrap: wrap; }
  .console-title   { min-width: 0; }
}

/* Por si algún texto largo (no-code) forzara ancho */
.developers .dev-tech-list li span{
  overflow-wrap: anywhere;  /* permite cortes seguros en palabras muy largas */
}


/* ===== Pricing ===== */
 /* .price-col.cta{ display: none; } */

.pricing .price-h2{
  margin: 5% 0% 2%;
  text-align: center;
  color: var(--color-text2);
  font-size: 2vw;
}
.price-more{text-align: center;}
.price-table{
  display: grid;
  gap: 12px;
  padding: 0% 10%;
}

.price-row{
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.5fr auto; /* 3 o 4 columnas */
  gap: 12px;
  align-items: center;
  background: rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.price-col{ min-width: 0; }              /* para evitar desbordes */
.price-col.credits .qty{
  font-size: xx-large; line-height: 1; margin-right: 6px;
  color: var(--color-text3);
}
.price-col.price{
  color: var(--color-text3);           /* precio destacado */
  font-weight: 800;
  
}
.price-col.price .currency{ opacity: .9; margin-right: 2px;font-size: x-large; }
.price-col.price .unit{ color: var(--color-sec1-bg); font-weight: 600; margin-left: 4px;font-size: x-large;}
.price-col.price > strong{ font-size: x-large; }
.unitprice strong{ font-weight: 800; font-size: large;}
.unitprice span{ color: var(--color-sec1-bg); margin-left: 4px; font-size: medium;}

.btn-buy{
  background: var(--color-sec2-bg);
  color: var(--color-sec2-fg);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.btn-buy:hover{ filter: brightness(1.05); }

/* Callout de precios: reusa estilo de dev-callout */
.price-callout{
  margin-bottom: 18px;
  width: 75%;
}

/* Bullets (1 fila, 3 columnas; en mobile se apilan) */
.price-bullets{
  margin: 10px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.price-bullets .bullet{
 
  border: 4px solid rgba(100,154,64,.30);
  border-radius: 15	px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px){
	.price-table{
		padding: 0% 0%;
	}
  .price-row{
    grid-template-columns: 1fr 1fr;  /* 2 columnas x 2 filas */
    row-gap: 10px;
	text-align: center;
  }
.pricing .price-h2{
  font-size: 1.3rem;
}
  
  .price-row > div > 
  .price-col.cta{ justify-self: end; }
  .price-bullets{ grid-template-columns: 1fr; font-size: 4vw;}
  .price-callout{  width: 100%;}
  .credits {display:flex; flex-direction: column;}
  .credits > span{font-size: 6vw !important;}
  .credits > strong{font-size: 9vw !important;}
  .price > span{font-size: 5vw !important;}
  .price > strong{font-size: 6vw !important;}
  .unitprice > span{font-size: 4vw !important;}
  .unitprice > strong{font-size: 4vw !important;}
}

/* Seguridad contra overflow horizontal */
#precios, .pricing { overflow-x: clip; }




/*---- contacto -----*/

#contacto {background: linear-gradient(to top, var(--color-bg), var(--color-sec3-bg));}
.g-recaptcha { z-index: 10; position: relative; }

#form_contacto .field{ margin: 10px 0; }
#form_contacto label{ display:block; font-weight:700; margin-bottom:4px; }
#form_contacto input[type="text"],
#form_contacto input[type="email"]{
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,.2); outline: none;
}
#form_contacto .hint{ display:block; opacity:.7; font-size: 12px; }

#form_contacto > button { font-size: x-large;margin-left: auto;margin-right: auto; display: flex;}
#form_contacto {
	width: 60%;
		margin-left: auto;
		margin-right: auto;

}
/* Responsive */
@media (max-width: 992px){
	#form_contacto {
		width: 100%;

	}
	#form_contacto input[type="text"],
	#form_contacto input[type="email"]{
		font-size: larger;
	}
	#form_contacto > button {     font-size: 5vw;}
	.contact_error, .contact_ok {
		font-size: 0.8rem !important;
	}
}
.g-recaptcha{
  display: flex;
  justify-content: center;
  overflow: visible;    
margin-top: 5%; margin-bottom: 5%; 
}

/* Mobile: agrandar el checkbox */
@media (max-width: 992px){
  /* El primer div que inyecta Google mide ~304x78 (size: normal) */
  .g-recaptcha > div{
    transform: scale(1.50);
    -webkit-transform: scale(1.50);
    transform-origin: center top;        /* dónde se “apoya” el escalado */
    -webkit-transform-origin: center top;
  }

  /* Reservar altura = 78px * 1.25 ≈ 98px para que no se recorte */
  .g-recaptcha{
    height: 112; /* o calc(78px * 1.25); si preferís */
	margin-bottom: 10%; 
  }


}

/*---- constelacion -----*/


#servicio { position: relative; }
#srv-particles { position: absolute; inset:0; z-index: 1; }
#servicio > .container.servicio { position: relative; z-index: 2; }

/* host donde tsParticles inyecta el <canvas> */
#srv-particles{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;              /* canvas en medio */
}

/* Fallback canvas encima de cualquier canvas interno de librería */
#net-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 3;
  background: transparent; /* quitar cualquier tinte de debug */
}


@media (max-width: 992px){
  .btn {
    font-size: clamp(14px, 4vw, 18px);
  }

  .login-link {
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .credits > span{
    font-size: clamp(16px, 4.5vw, 22px) !important;
  }
  .credits > strong{
    font-size: clamp(20px, 6vw, 28px) !important;
  }
  .price > span{
    font-size: clamp(14px, 4vw, 20px) !important;
  }
  .price > strong{
    font-size: clamp(16px, 5vw, 24px) !important;
  }
  .price-bullets{
    font-size: clamp(13px, 3.5vw, 18px);
  }
}

/* =========================
   Ajustes específicos menú hamburguesa
   (poner al final del CSS)
   ========================= */

/* Tamaño de los links del menú lateral */
.offcanvas-nav a{
  /* antes: font-size: 55px; */
  font-size: clamp(16px, 4.5vw, 22px);
}

/* Link "Login" del footer del offcanvas */
.offcanvas-footer > a {
  /* antes: 42px */
  font-size: clamp(14px, 4vw, 20px);
}

/* Opcional: separarlos un poco menos */
.offcanvas-nav a{
  padding: 10px 6px;
}

@media (max-width: 992px){
  /* Antes: 55px y 28px */
  .offcanvas .flag {
    font-size: clamp(16px, 4vw, 22px);
  }
  .offcanvas .lang-code {
    font-size: clamp(12px, 3vw, 14px);
  }
}

@media (max-width: 992px){
  /* Quitar esta línea o bajarla mucho */
  /* html { font-size: 38px !important; } */

  /* Algo más razonable */
  html { font-size: 16px !important; }
}

/* ========== PARCHE MENÚ HAMBURGUESA (OFFCANVAS) ========== */

/* Teléfonos más chicos (ej. Samsung A02 ~360px de ancho) */
@media (max-width: 420px){

  /* Links del menú lateral */
  .offcanvas-nav a{
    /* Antes 55px o clamp chico → ahora más legible */
    font-size: 1.2rem;       /* ~19px con html=16px */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; /* aumenta área de toque */
  }

  /* Botón "Login" del footer del offcanvas */
  .offcanvas-footer > a{
    font-size: 1.1rem;       /* ~17–18px */
  }

  /* Banderas + código ES/EN dentro del menú */
  .offcanvas .flag,
  .offcanvas .flag-icon{
    font-size: 1.3rem;       /* para emoji */
    width: 22px;             /* para flag-icon */
    height: 16px;
  }

  .offcanvas .lang-code{
    font-size: 0.9rem;       /* ~14–15px */
  }

  /* Opcional: agrandar un poquito el switch entero */
  .offcanvas .lang-switch{
    transform: scale(1.1);
    transform-origin: left center;
  }
}

/* Teléfonos un poco más grandes (S24 FE, etc.) */
@media (min-width: 421px) and (max-width: 992px){


  /* Quitar esta línea o bajarla mucho */
  /* html { font-size: 38px !important; } */

  /* Algo más razonable */
  html { font-size: 32px !important; }

  .offcanvas-nav a{
    font-size: 1.05rem;      /* ~17px aprox. */
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .offcanvas-footer > a{
    font-size: 1rem;         /* 16px */
  }

  .offcanvas .flag,
  .offcanvas .flag-icon{
    font-size: 1.1rem;
    width: 20px;
    height: 14px;
  }

  .offcanvas .lang-code{
    font-size: 0.85rem;
  }

  .offcanvas .lang-switch{
    transform: none;
  }
}
