/* ─── Billcapital — Custom Styles ─── */

:root {
  --navy: #0B1727;
  --title-color: #14213D;
  --lime: #B4E48D;
  --lime-hover: #a5d644;
  --bg-light: #f8f9fc;
  --text-main: #1C2638;
  --text-muted: var(--title-color);
  --border: #E5E7EB;
  --border-purple: #BD8DE4;
  --accent-red: #E4928D;
	
	--green:#B4E48D;
	--green-dark:#8FCC5E;
	--sky:#8DE0E4;
	--lavender:#BD8DE4;
	--pink:#E4928D;

  /* ─── TIPOGRAFÍA FLUIDA ─── */
  --size-title:    clamp(1.375rem, 1rem + 2.5vw, 2.625rem);
  --size-subtitle: clamp(1.05rem, 0.8rem + 1.4vw, 1.625rem);
  --size-body:     clamp(0.95rem, 0.82rem + 0.7vw, 1.125rem);

  --lh-title:    1.21;
  --lh-subtitle: 1.37;
  --lh-body:     1.65;
}
*
* { box-sizing: border-box; }

/* Anula la clase Bootstrap text-muted para que no aplique gris */
.text-muted { color: var(--title-color) !important; }

body {
  font-family: "Google Sans Flex", "Plus Jakarta Sans", sans-serif;
  font-size: var(--size-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--text-main);
  background-color: #F2F2F2;
  overflow-x: hidden;
}

/* ─── TIPOGRAFÍA GLOBAL ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans Flex", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
}

p, li {
  font-family: "Google Sans Flex", "Plus Jakarta Sans", sans-serif;
  font-size: var(--size-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: 0;
}

.section-title {
  font-weight: 800;
  font-size: 52px;
  line-height: var(--lh-title);
  color: var(--title-color);
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.section-subtitle {
  font-weight: 500;
  font-size: var(--size-subtitle);
  line-height: var(--lh-subtitle);
  color: var(--title-color);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0;
}

h4 { font-size: clamp(1rem, 0.85rem + 0.9vw, 1.375rem); font-weight: 500; line-height: 1.3; }
h5 { font-size: clamp(0.95rem, 0.8rem + 0.85vw, 1.3rem);  font-weight: 500; line-height: 1.3; }
h6 { font-size: clamp(0.85rem, 0.75rem + 0.6vw, 1rem);   font-weight: 700; line-height: 1.3; }

/* ─── CONTENEDOR SITIO ─── */
.site-container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left:  clamp(20px, 3%, 56px);
  padding-right: clamp(20px, 3%, 56px);
}

/* ─── COMPONENTES GLOBALES ─── */
.btn-lime {
  background-color: var(--lime);
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 42px;
  border: none;
  transition: all 0.3s ease;
  font-size: clamp(1rem, 0.85rem + 0.8vw, 1.25rem);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-lime:hover {
  background-color:  var(--title-color);
  color: #FFF;
  transform: translateY(-2px);
}

/* ─── NAVBAR ─── */
.navbar { background-color: var(--navy); padding: 16px 0; }
.navbar-brand {
  font-weight: 800;
  color: #fff !important;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
	color: #fff !important;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 8px 16px !important;
	opacity: 0.9;
	white-space:nowrap;
}
.nav-link:hover { opacity: 1; }
.nav-login { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-right: 20px; transition: 0.2s; }
.nav-login:hover { color: var(--lime); }
.btn-nav-register {
  background-color: var(--lime);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
	white-space:nowrap;
}
.btn-nav-register:hover { background-color: var(--lime-hover); }

/* ─── HERO ─── */
.hero { padding: 80px 0 60px; }
.hero h1 {
  font-size: clamp(1.6rem, 1.1rem + 3vw, 3rem);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: 0;
}
.hero-phones { position: relative; height: 100%; min-height: 400px; display: flex; justify-content: center; align-items: flex-end; }

/* ─── STATS ─── */
.stats-section { padding: 40px 0 80px; }
.stat-card {
  border: 1.5px solid var(--border-purple);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
	transition:.5s;
}
.stat-card:hover {
	transform:translateY(-4px);
	box-shadow:0 12px 32px rgba(0,0,0,0.08);
	border-color:transparent
}
.stat-card h3 {
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.75rem);
  line-height: 1.167;
  color: var(--title-color);
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.stat-card p {
  font-weight: 400;
  font-size: clamp(1rem, 0.72rem + 0.85vw, 1.3125rem);
  line-height: 1.476;
  color: var(--title-color);
  text-align: center;
  letter-spacing: 0;
  margin-top: 0.3rem;
}

/* ─── QUÉ ES UN MIC ─── */
.que-es-mic { padding: 80px 0; }
.img-mic {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
@media (min-width: 992px) {
  .img-mic { height: 500px; }
}

/* ─── COMPARATIVA ─── */
.comparativa { padding: 80px 0; }
.compare-card {
  border: 2px solid var(--border-purple);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.03);
}
.compare-card h4 {
	font-size:28px;
}
.compare-card h4 strong {
	display:block;
}
.compare-card h5 {
	font-weight:700;
	font-size:19px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--title-color);
  margin-bottom: 10px;
	padding-bottom:10px;
  font-weight: 500;
border-bottom:1px solid rgba(180,228,141,0.15);
}
.compare-card ul li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 4px; }

/* ─── BENEFICIOS ─── */
.beneficios { padding: 80px 0; }
.benefit-card {
  background: #fff;
  border: 2px solid var(--border-purple);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: 0.3s;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.05); }
.benefit-card h5 {
	color: var(--title-color);
	font-size:28px;
	font-weight:600;
}
.benefit-card p { text-align: left; }

/* ─── CÓMO FUNCIONA — carousel FULL WIDTH ─── */
.como-funciona { padding: 80px 0 50px; overflow: hidden; }
.step-card {
  text-align: center;
  border: 2px solid var(--border-purple);
  border-radius: 20px;
  padding: 30px 30px 0 30px;
  height: 100%;
  background: #fff;
}
.step-card h6 {
  color: var(--title-color);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.75rem + 1.6vw, 1.875rem);
  line-height: 1.333;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.step-card p {
  font-weight: 400;
  font-size: clamp(1rem, 0.72rem + 0.85vw, 1.3125rem);
  line-height: 1.476;
  text-align: center;
  letter-spacing: 0;
  color: var(--text-muted);
  margin-bottom: 25px;
	width:80%;
	margin: 0 auto 25px;
}
@media (max-width:768px) {
	.step-card p {
		min-height:80px;
	}
}
.step-phone-small {
  width: 140px; height: 280px;
  background: var(--bg-light);
  border-radius: 20px;
  border: 4px solid var(--navy);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-number {
  width: 28px; height: 28px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px; left: -10px;
  font-size: 0.9rem;
}
.swiper-how-it-works { width: 100%; padding-bottom: 50px; }
.swiper-pagination-bullet-active { background-color: var(--navy) !important; }

/* ─── CALCULADORA ─── */
.calculadora { padding: 80px 0; }
.calc-illustration {
  width: 100%;
  max-width: 550px;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-top: 30px;
}
.calc-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
  border: 1px solid var(--border-purple);
}

.calc-box small.text-muted.d-block.mb-2 {
    display: block !important;
    font-size: 0.9rem;
	color:/*#E4928D*/ grey !important;
	margin-bottom:0 !important;
}

.calc-box label { font-size: 1.2rem;
    font-weight: 700; color: var(--title-color); margin-bottom: 8px; display: block; }
.calc-box .form-control {
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 0.95rem;
  background-color: #fafbfc;
  margin-bottom: 3px;
}
.calc-box .form-control:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(180,228,141,.25);
  background-color: #fff;
}
.result-box { text-align: center; margin-top: 10px; border-top: 1px solid var(--border); padding-top: 20px; }
.result-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-bottom: 5px; }
#resultado {
  font-size: 0.9rem;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--title-color);
  min-height: 20px;
}

/* ─── TESTIMONIOS ─── */
.testimonios { padding: 80px 0; overflow: hidden; }
.gal-videos {
	display:flex;
	flex-direction:row;
	margin-bottom:35px;
  justify-content: center;
}
.gal-videos > div {
	flex:1;
}
.video-card {
	position: relative;
	padding-bottom: 177%;
	padding-top: 0px;
	height: 0;
	overflow: hidden;
	border-radius:16px;
}
@media (min-width:768px) {
  .gal-videos > div {
    max-width:33%;
  }
}
.video-card video,
.video-card iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.play-btn {
  width: 60px; height: 60px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.play-overlay::before {
  content: '';
  display: block;
  width:50px;
  height:50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230B1727' viewBox='0 0 640 640'%3E%3Cpath d='M187.2 100.9C174.8 94.1 159.8 94.4 147.6 101.6C135.4 108.8 128 121.9 128 136L128 504C128 518.1 135.5 531.2 147.6 538.4C159.7 545.6 174.8 545.9 187.2 539.1L523.2 355.1C536 348.1 544 334.6 544 320C544 305.4 536 291.9 523.2 284.9L187.2 100.9z'/%3E%3C/svg%3E");
}
.play-overlay:hover { transform: scale(1.1); }
.testi-text-card {
	background:transparent;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,.03);
  height: 300px;
  border: 1px solid #BD8DE4;
  overflow: hidden;
	transition:.5s;
}
.testi-text-card:hover {
	background: #fff;
	box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.testi-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi-info h6 { margin: 0; font-weight: 800; color: var(--title-color); }
.testi-info p  { margin: 0; font-size: 0.8rem; color: var(--text-muted); }
.swiper-testimonials { width: 100%; padding-bottom: 50px; padding-top: 10px; }

/* ─── APP ─── */
.app-section { padding: 80px 0; text-align: center; }
.app-phones { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.app-phone img { width: 100%; }
@media (min-width:991px) {

	.app-phones .app-phone {
		width:33%;
	}
}
.app-description {
	width: 59%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 140%;
}
.cont-stores {
	width: 70%;
    margin: 48px auto;
    display: flex;
    justify-content: space-around;
}
@media (max-width:768px) {
	.cont-stores {
		width:100%;
	}
}
.store-btn {
  border-radius: 20px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.store-btn:hover { background: #eee; }

/* ─── FAQ ─── */
.faq-section { padding: 80px 0; }
.faq-list { width: 100%; padding: 0 clamp(20px, 3%, 56px); }
.faq-item { border-bottom: 1.5px solid var(--border-purple); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Google Sans Flex", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 0.7rem + 1.35vw, 1.875rem);
  line-height: 1.33;
  letter-spacing: 0;
  color: var(--title-color);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-red);
  transition: transform 0.25s;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.faq-open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 4px 24px; color: var(--text-muted); margin: 0; }

/* ─── FINAL CTA ─── */
.final-cta { background-color: #B4E48D; padding: 80px 0 0; text-align: center; width: 100%; }
.cta-text {
  text-align: left;
  font-size: clamp(1.4rem, 1rem + 2.2vw, 3rem);
  font-weight: 800;
  color: #14213D;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.btn-cta-dark {
  background-color: #14213D;
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
	max-width:311px;
  font-size: clamp(0.95rem, 0.8rem + 0.8vw, 1.2rem);
	white-space:nowrap;
}
.btn-cta-dark:hover { background: #0c1426; color: #fff; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background-color: var(--navy); padding: 60px 0 30px; color: #fff; }
.footer-logo { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
h5.footer-col { font-size: 1rem; font-weight: 500; margin-bottom: .3rem; color: #fff; }
.footer-col { font-weight: 500; margin: 0; list-style: none !important; padding: 0 !important; }
.footer-col li { list-style: none; }
.footer-col li a { color: #fff; text-decoration: none; border-bottom:1px solid #FFF; font-size: 1rem; transition: 0.2s; font-weight: 400; }
.footer-col li a:hover { color: var(--lime); }
.footer-col a { color: #fff; text-decoration: none; }
.footer-col li::marker { display: none; }
.footer-col li a.social {
	color:#B4E48D;
	margin:0 15px;
	border-bottom:0 none;
}
.footer-content-col { display: flex; flex-direction: column; align-items: flex-start; }
@media (min-width: 992px) {
 
  .footer-content-col .footer-col { text-align: left; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero-phones { display: none; }
  .app-phones { flex-direction: column; align-items: center; gap: 20px; }
  .app-phone { width: 100%; max-width: 280px; }
  .final-cta { padding-bottom: 60px; }
}



/* ══════════════════════════════════════════════════════════════════
   CALCULADORA MIC — Validación de campos + Modal de resultado
   Añade este bloque al final de billcapital.css
══════════════════════════════════════════════════════════════════ */

/* ── Grupos de campo ─────────────────────────────────────────────── */
.bc-field-group {
  margin-bottom: 1.1rem;
  position: relative;
}

.bc-field-error {
  display: block;
  font-size: .78rem;
  color: #FF0000;
  min-height: 1.1em;
  margin-top: 0;
  transition: opacity .2s;
}

.bc-field-error:empty { opacity: 0; }

.form-control.bc-input-error {
  border-color: #e4928d !important;
  box-shadow: 0 0 0 3px rgba(228,146,141,.18);
}

.form-control.bc-input-ok {
  border-color: var(--lime,#c8f03b) !important;
  box-shadow: 0 0 0 3px rgba(200,240,59,.18);
}

/* ════════════════════════════════════════════════════════════════
   MODAL — estas reglas son las CRÍTICAS para que flote sobre todo
════════════════════════════════════════════════════════════════ */
.bc-modal-overlay {
  position: fixed !important;  /* DEBE ser fixed, no static ni relative */
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 999999 !important;  /* por encima de navbar sticky y cualquier otra cosa */
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex !important;    /* centrar la caja */
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: bcFadeIn .2s ease;
}

/* Cuando está oculto el atributo hidden lo colapsa */
.bc-modal-overlay[hidden] {
  display: none !important;
}

@keyframes bcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Caja del modal ──────────────────────────────────────────────── */
.bc-modal-box {
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  color: #fff;
  animation: bcSlideUp .25s cubic-bezier(.34,1.56,.64,1);
  /* Evita que el scroll del body se "coma" el modal */
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes bcSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Botón cerrar ────────────────────────────────────────────────── */
.bc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.bc-modal-close:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
}

/* ── Icono SVG central ───────────────────────────────────────────── */
.bc-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.bc-modal-icon svg {
  width: 80px;
  height: 80px;
}

.bc-check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: bcDrawCheck .5s .2s ease forwards;
}

@keyframes bcDrawCheck {
  to { stroke-dashoffset: 0; }
}

/* ── Títulos ─────────────────────────────────────────────────────── */
.bc-modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: .4rem;
}

.bc-modal-subtitle {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: .75rem;
}

/* ── Monto principal ─────────────────────────────────────────────── */
.bc-modal-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime,#c8f03b);
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  word-break: break-all;
}

/* ── Tabla desglose ──────────────────────────────────────────────── */
.bc-modal-details {
  background: rgba(255,255,255,.05);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.bc-modal-details table { width: 100%; border-collapse: collapse; }

.bc-modal-details td {
  padding: .45rem 0;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: middle;
}

.bc-modal-details tr:last-child td { border-bottom: none; }

.bc-modal-details td:last-child {
  text-align: right;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.bc-modal-details .bc-total-row td {
  color: var(--lime,#c8f03b);
  font-weight: 700;
  font-size: .95rem;
  padding-top: .8rem;
}

/* ── JSON raw fallback ───────────────────────────────────────────── */
.bc-modal-raw {
  background: rgba(255,255,255,.04);
  border-radius: .5rem;
  padding: 1rem;
  font-size: .76rem;
  color: rgba(255,255,255,.65);
  overflow-x: auto;
  margin-bottom: 1rem;
  white-space: pre-wrap;
}

/* ── Disclaimer ──────────────────────────────────────────────────── */
.bc-modal-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: .75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── Error modal ─────────────────────────────────────────────────── */
.bc-modal-error .bc-modal-title { color: #e4928d; }

.bc-modal-error-msg {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bc-modal-retry {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .bc-modal-box    { padding: 2rem 1.25rem; }
  .bc-modal-amount { font-size: 1.9rem; }
}
.swiper-how-it-works {
	overflow:visible;
/*	padding-right:10%;*/
}
.arrows {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-bottom: 15px;
}
.swiper-button-prev {
	margin-left:14px;
	width: 36px;
    height: 36px;
	position:relative !important;
	left:auto !important;
	right:auto !important;
	margin-top:0;
}
.swiper-slide {
  box-sizing: border-box;
}
.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.swiper-button-prev::after {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='37' height='37' viewBox='0 0 37 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.7615 18.1652H7.56888M7.56888 18.1652L18.1652 7.56885M7.56888 18.1652L18.1652 28.7615' stroke='%2314213D' stroke-width='4.43052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 36px;
    height: 36px;
    font-size: 0 !important;
}
.swiper-button-next {
	margin-right:14px;
	width: 36px;
    height: 36px;
	position:relative !important;
	left:auto !important;
	right:auto !important;
	margin-top:0;
}
.swiper-button-next::after  {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='37' height='37' viewBox='0 0 37 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.56909 18.1652H28.7617M28.7617 18.1652L18.1654 7.56885M28.7617 18.1652L18.1654 28.7615' stroke='%2314213D' stroke-width='4.43052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	width: 36px;
    height: 36px;
    font-size: 0 !important;
}
@media (max-width:991px) {
	.swiper-button-prev,
	.swiper-button-next {
		background:#B4E48D;
		border-radius: 50%;
        padding: 10px;
        box-sizing: content-box;
	}
}
@media (max-width: 1400px) {
  .calc-box label {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .calc-box label {
    font-size: .7rem;
  }
}
.sticky-top {
	transition:.5s;
}
.sticky-top.fixed {
	padding-top:0;
	padding-bottom:0;
}
/*calculadora*/
.calc-box label {
	font-size:1rem;
}
.bc-field-group {
	margin-bottom:.5rem;
}
.calc-box {
	padding:30px 30px 20px 30px;
}
.result-box {
	margin-top:0px;
}




  /* ═══ BENEFITS — COLOR TOP + TENUE ICON BG + NAVY ICONS ═══ */
.beneficios {
	background: var(--white)
}

.beneficios .section-title {
	text-align: center;
	margin-bottom: 48px
}

.bene-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}
@media (max-width:768px) {
	.bene-grid {
		grid-template-columns: 1fr;
	}
}
.bene-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	transition: var(--tr);
	border: 1px solid var(--gray-200);
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	background:#FFF;
}

.bene-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
	border-color: transparent
}

.bene-top {
	height: 6px;
	width: 100%
}

.bene-card:nth-child(1) .bene-top {
	background: linear-gradient(90deg,var(--green),var(--green-dark))
}

.bene-card:nth-child(2) .bene-top {
	background: linear-gradient(90deg,var(--sky),#6DD5D9)
}

.bene-card:nth-child(3) .bene-top {
	background: linear-gradient(90deg,var(--lavender),#A06CD5)
}

.bene-card:nth-child(4) .bene-top {
	background: linear-gradient(90deg,var(--pink),#D4726C)
}

.bene-body {
	padding: 32px
}

.bene-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px
}

.bene-icon svg {
	width: 28px;
	height: 28px;
	color: var(--navy);
	opacity: 0.55
}

.bene-card:nth-child(1) .bene-icon {
	background: rgba(180,228,141,0.18)
}

.bene-card:nth-child(2) .bene-icon {
	background: rgba(141,224,228,0.18)
}

.bene-card:nth-child(3) .bene-icon {
	background: rgba(189,141,228,0.18)
}

.bene-card:nth-child(4) .bene-icon {
	background: rgba(228,146,141,0.18)
}

.bene-card h5 {
	font-size: /*18px;*/ 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 10px
}

.bene-card p {
	font-size: /*14px;*/ 20px;
	color: var(--text-light);
	line-height: 1.7
}

/*comparativa*/
.compare-1 {
	opacity:.7;
	box-shadow:none;
	border:0 none;
}
.compare-2 {
	border: 3px solid #B4E48D;
    opacity: 1;
	position:relative;
}
.compare-2 a.btn-lime {
	margin-top:20px;
}
.compare-2 > span {
	position: absolute;
    background: #B4E48D;
    top: 0;
    right: 25px;
    color: #0B1727;
    font-size: 14px;
    padding: 5px 15px 9px;
    line-height: 100%;
    border-radius: 0 0 9px 9px;
    text-transform: uppercase;
    font-weight: 800;
}

.compare-1 ul li svg path {
	stroke: #E4928D;
}
.compare-2 ul li svg path {
	stroke: #B4E48D;
}
.compare-1 h5 {
	color:#E4928D;
}
.compare-2 h5 {
	color:#B4E48D;
}
.separador {
	border-top: 1.5px solid var(--border-purple);
	margin-bottom: 24px;
	margin-left: 5px;
	margin-right: 5px;
}

@media(max-width:991px) {
	.navbar-collapse {
		padding-bottom:10px;
	}
}




/*ajustes pantallas grandes*/
/*banner*/
@media (min-width:1856px) {
	body .hero-conocenos {
		min-height:750px;
	}
}
@media (min-width:2180px) {
	body .hero-conocenos {
		min-height:850px;
	}
}
@media (min-width:2476px) {
	body .hero-conocenos {
		min-height:950px;
	}
}
@media (min-width:2748px) {
	body .hero-conocenos {
		min-height:1100px;
	}
}
@media (min-width:3150px) {
	body .hero-conocenos {
		min-height:1220px;
	}
}
@media (min-width:3520px) {
	body .hero-conocenos {
		min-height:1400px;
	}
}

/*otros*/
@media (min-width:2000px) {

	body .site-container,
	body .container{
		max-width:1800px;
	}
	body .hero-conocenos h1 {
		font-size:80px;
	}
	
	body p,
	body .compare-card ul li,
	.bene-card p {
		font-size:25px;
	}
	
	body .hero-conocenos p,
	body .bloque p,
	body .principios p,
	body .section-subtitle,
	body .content-blog-repositorio h4{
		font-size:30px;
	}
	body .principios h4,
	body .banner-single .text-banner h2,
	body .single-post h2 {
		font-size:35px;
	}
	body .equipo .item-equipo .roll h5,
	body .calc-box small.text-muted.d-block.mb-2 {
		font-size:20px;
	}
	body .loop1 .nota-destacada .text-nota a.btn-lime,
	body .content-blog-repositorio .text-nota p,
	body .chip-label,
	body .loop2 .nota .text-nota .data a,
	body .content-blog-repositorio .text-nota .data,
	body .content-blog-repositorio h2.titulo {
		font-size:18px;
	}
	body .equipo .item-equipo .roll p {
		font-size:17px;
	}
	body .footer-col h5,
	body h5.footer-col,
	body .footer-col li,
	body .app-description,
	body .calc-box label,
	body .calc-box .form-control,
	body .compare-card h5,
	body .footer-col li a{
		font-size:21px;
	}
	body .testi-info h6,
	body .banner-single .text-banner p,
	bosy.single-post .entry .wp-block-column h4 strong,
	body.single-post .entry h4,
	body.single-post .entry .wp-block-column h4{
		font-size:25px;
	}
	body .testi-info p {
		font-size:22px;
	}
	body .footer-col li a i {
		font-size:2rem;
	}
	body .nav-link,
	body .btn-nav-register,
	body .nav-login,
	body .btn-lime,
	body .btn-cta-dark,
	body .formulario .btn-lime,
	body .banner-single .btn-dark,
	body.single-post .entry p,
	body.single-post .entry li {
		font-size:20px;
	}
	body.page-template-page-bienvenida-mic .tab-content h4,
	body.page-template-page-bienvenida-mic .pasos .paso .tab-content .bajada h4,
	body.page-template-page-bienvenida-mic .pasos .paso h3{
		font-size:30px;
	}
	body.page-template-page-bienvenida-mic .txt-video p,
	body.page-template-page-bienvenida-mic .txt-video h5,
	body.page-template-page-bienvenida-mic .pasos .paso .tab-content .bajada p {
		font-size:20px;
	}
}
@media (min-width:2500px) {
	body .site-container,
	body .container {
		max-width:2200px;
	}
}