/* ── Hero Niñeras ───────────────────────────────────────── */
.hero_nineras {
  position: relative;
  background: #fdf6f0;
  padding: 2.5rem 0 5rem;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Burbujas de fondo */
.hero_nineras::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 190, 0.55) 0%, transparent 70%);
  pointer-events: none;
}
.hero_nineras::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 20%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 140, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hero_nineras_inner {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 4rem;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.hero_nineras_left {
  flex-direction: column;
  flex: 1 1 520px;
  gap: 1.4rem;
}
.hero_badge {
  background: #fff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3f6e92;
  padding: 0.5em 1.2em;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.hero_nineras_h1 {
  font-size: 4.6rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  color: #273947;
  line-height: 1.08;
  margin: 0;
}
.hero_accent {
  color: #5dbfb0;
  font-style: italic;
}
/* Subrayado curvo rosa bajo "amas" */
.hero_nineras_h1 .underline_pink {
  position: relative;
  display: inline-block;
}
.hero_nineras_h1 .underline_pink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 9 Q50 2 100 7 Q150 12 200 5' stroke='%23f48aaa' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
.hero_nineras_p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.75;
  max-width: 500px;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
}
.hero_nineras_btns {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.btn_hero_primary {
  background: #273947;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9em 2em;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn_hero_primary:hover { background: #2e3d6b; }

/* Botón llamanos: fondo rosa pastel como en la imagen */
.btn_hero_secondary {
  background: #fadadd;
  color: #c0435f;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9em 2em;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: background 0.2s;
}
.btn_hero_secondary:hover { background: #f9c4cc; }
.btn_hero_secondary .svg_phone { width: 1.1rem; }

/* ── Columna derecha ── */
.hero_nineras_right {
  position: relative;
  flex: 1 1 460px;
  min-height: 540px;
}

/* Forma ovalada tipo huevo */
.hero_img_wrap {
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  position: absolute;
}
.hero_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero_img_main {
  width: 62%;
  height: 340px;
  top: 40px;
  right: 0;
  border-radius: 55% 55% 50% 50% / 60% 60% 40% 40%;
}
.hero_img_secondary {
  width: 46%;
  height: 230px;
  bottom: 0;
  right: 42%;
  border-radius: 50% 50% 55% 55% / 40% 40% 60% 60%;
}

/* Tarjetas flotantes */
.hero_card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  gap: 0.8em;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  z-index: 2;
  min-width: 210px;
}
.hero_card_top { top: 0; left: 0; }
.hero_card_bottom { bottom: 10px; right: 0; }
.hero_card_icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero_card_icon svg { width: 20px; height: 20px; }
.hero_card_icon_yellow { background: #fff3cd; color: #b8860b; }
.hero_card_icon_purple { background: #ede8f8; color: #7c5cbf; }
.hero_card_title { font-size: 0.92rem; font-weight: 600; color: #1a2340; margin: 0; }
.hero_card_sub { font-size: 0.8rem; color: #999; margin: 0; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero_nineras { min-height: auto; padding: 2rem 0 3rem; }
  .hero_nineras_inner { flex-direction: column; gap: 1rem; padding: 0 0.5rem; }
  .hero_nineras_h1 { font-size: 3.2rem; }
  .hero_nineras_right { order: -1; width: 100%; min-height: 280px; }
  .hero_nineras_left  { order:  1; }

  /* Burbuja niñera: arriba-derecha */
  .hero_img_main {
    width: 55%;
    height: 260px;
    top: 20px;
    right: 16px;
    left: auto;
    bottom: auto;
  }

  /* Burbuja bebé: encima de la niñera, abajo-izquierda — solapada */
  .hero_img_secondary {
    width: 42%;
    height: 190px;
    bottom: auto;
    top: 100px;       /* se encima 80px con la burbuja grande */
    left: 16px;
    right: auto;
  }

  /* Tarjetas: ajustadas al nuevo espacio */
  .hero_card_top    { top: 10px; left: 10px; }
  .hero_card_bottom { display: none; }
  .hero_nineras_right { position: relative; flex: 1 1 256px; min-height: 330px;}
}

@media (max-width: 480px) {
  .hero_nineras_right { min-height: 240px; }
  .hero_nineras_h1 { font-size: 2rem; }

  .hero_img_main {
    width: 54%;
    height: 210px;
    top: 16px;
    right: 12px;
  }

  /* Burbuja bebé: encimada ~70px con la grande */
  .hero_img_secondary {
    width: 40%;
    height: 155px;
    top: 90px;
    left: 12px;
  }

  .hero_card { min-width: 150px; font-size: 0.82rem; padding: 0.6em 0.9em; }
  .hero_card_icon { width: 32px; height: 32px; }
  .hero_card_icon svg { width: 15px; height: 15px; }
}

/* ── LAYOUT (reemplazado) ── */
.filtros_grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filtros_fila {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.filtros_fila .filtro_card {
  flex: 1 1 0;
  max-width: calc(25% - 0.75rem);
  min-width: 200px;
}

@media (max-width: 900px) {
  .filtros_fila {
    flex-wrap: wrap;
  }
  .filtros_fila .filtro_card {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}

@media (max-width: 540px) {
  .filtros_fila .filtro_card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ── CARD ESTILO (se queda igual) ── */
.filtro_card {
  background: #fff;
  border-radius: 20px;
  padding: 1.4em 1.4em 1.6em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.filtro_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* ── INTERNOS (se quedan igual) ── */
.filtro_card_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.filtro_icon_wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.filtro_icon_wrap svg {
  width: 22px;
  height: 22px;
}
.filtro_icon_pink   { background: #fde8ec; color: #d9607a; }
.filtro_icon_yellow { background: #fef9e0; color: #c8a000; }
.filtro_icon_purple { background: #f0ebfc; color: #8060c0; }
.filtro_icon_teal   { background: #e4f6f2; color: #2a9d8f; }
.filtro_icon_blue   { background: #e4f0fa; color: #2a7ab8; }
.filtro_icon_orange { background: #fef0e4; color: #d07828; }

.filtro_num {
  font-family: 'Caveat', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}
.filtro_card_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2340;
  margin: 0;
  line-height: 1.3;
}
.filtro_card_desc {
  font-size: 0.85rem;
  color: #273947;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .filtros_grid { grid-template-columns: repeat(2, 1fr); }
  .filtro_card:nth-child(5),
  .filtro_card:nth-child(6),
  .filtro_card:nth-child(7) { grid-column: auto; }
}
@media (max-width: 560px) {
  .filtros_grid { grid-template-columns: 1fr; }
}

/* ── Modalidades header ─────────────────────────────── */
.mod_header {
  text-align: center;
  padding: 4rem 1rem 1rem;
}
.mod_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: #fff;
    border-radius: 40px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3f6e92;
    padding: 0.5em 1.4em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    width: fit-content;
}
.mod_title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #273947;
    line-height: 1.1;
    margin: 0 auto 0.5em;
}
.mod_underline {
  position: relative;
  display: inline-block;
}
.mod_underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 14' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q20 2 40 8 Q60 14 80 7 Q100 1 120 8 Q140 14 160 6' stroke='%23f48aaa' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
@media (max-width: 680px) {
  .mod_title { font-size: 2.4rem; }
}

/* ── Sección Perfiles ───────────────────────────────────── */
.perfiles_bg {
  background: #fdf6f0;
  padding: 5rem 0 6rem;
}
.perfiles_header {
  text-align: center;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.perfiles_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #273947;
  line-height: 1.1;
  margin: 0;
}
.perfiles_desc {
    font-size: 1.4rem;
    color: #536472;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
    font-family: 'Poppins';
}

/* Grid de cards */
.perfiles_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1280px;
}
.perfil_card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.perfil_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Zona de imagen con color de fondo pastel */
.perfil_img_wrap {
  position: relative;
  height: 220px;
  border-radius: 20px;
  margin: 0.8rem 0.8rem 0;
  overflow: hidden;
}
.perfil_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.perfil_pink   { background: #f2d6e0; }
.perfil_yellow { background: #f0e8b0; }
.perfil_purple { background: #ddd0f0; }
.perfil_teal   { background: #c8e8e0; }

/* Tag tipo badge sobre la imagen */
.perfil_tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
  background: rgba(255,255,255,0.88);
  padding: 0.3em 0.8em;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Cuerpo de la card */
.perfil_body {
  padding: 1.2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.perfil_name {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #273947;
  margin: 0;
}
.perfil_text {
  font-size: 0.88rem;
  color: #273947;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.perfil_link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a8dc0;
  text-decoration: none;
  margin-top: 0.4rem;
}
.perfil_link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .perfiles_grid { grid-template-columns: repeat(2, 1fr); }
  .perfiles_title { font-size: 2.6rem; }
}
@media (max-width: 560px) {
  .perfiles_grid { grid-template-columns: 1fr; }
  .perfiles_title { font-size: 2rem; }
}

/* ── Sección Proceso ─────────────────────────────────── */
.proceso_bg {
  background: #fdf6f0;
  padding: 5rem 0 6rem;
}
.proceso_header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1.5rem 4rem;
}
.proceso_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #273947;
  line-height: 1.1;
  margin: 0;
}
.proceso_desc {
  font-size: 1.4rem;
  color: #273947;
  max-width: 90%;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* Contenedor de los 3 pasos */
.proceso_steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 90%;
}

/* Línea punteada horizontal */
.proceso_linea {
  position: absolute;
  top: 52px; /* Centra con los círculos */
  left: 15%;
  right: 15%;
  height: 2px;
  border-top: 2px dashed #f4b8c0;
  z-index: 0;
}

/* Cada paso */
.proceso_paso {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

/* Círculo numerado */
.proceso_circulo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf6f0;
}
.proceso_circulo span {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.proceso_circulo_teal  { border-color: #5dbfb0; color: #1a2340; }
.proceso_circulo_teal span { color: #1a2340; }
.proceso_circulo_pink  { border-color: #f4a0b0; }
.proceso_circulo_pink span { color: #f4a0b0; }
.proceso_circulo_purple { border-color: #b0a0d8; }
.proceso_circulo_purple span { color: #b0a0d8; }

/* Badge "PASO X" amarillo */
.proceso_label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3em 0.9em;
  border-radius: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}
.proceso_label_yellow {
  background: #fff3c4;
  color: #a07800;
}

.proceso_nombre {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #273947;
  margin: 0;
  line-height: 1.3;
}
.proceso_texto {
  font-size: 1.3rem;
  color: #273947;
  line-height: 1.6;
  margin: 0;
  max-width: 85%;
}

/* Responsive */
@media (max-width: 700px) {
  .proceso_steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .proceso_linea { display: none; }
  .proceso_title { font-size: 2.4rem; }
}
/* Imagen por paso */
.proceso_img_wrap {
    width: 100%;
    max-width: 370px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0.4rem auto;
}
.proceso_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}
.proceso_paso:hover .proceso_img_wrap img {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 700px) {
    .proceso_img_wrap { height: 180px; }
}

/* ── Garantía rediseño ───────────────────────────────── */
.garantia_new {
  background: #273947 !important;
  padding: 5rem 0;
}
.garantia_new .garantia {
  gap: 1.6rem;
  padding: 0 1.5rem;
  max-width: 780px;
}
.garantia_new_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  margin: 0;
}
.garantia_accent {
  color: #7dd4c8;
}
.garantia_new_txt {
    font-size: 1.4rem;
    color: #c9cdd1;
    line-height: 1.75;
    text-align: left;
    margin: 0;
    max-width: 680px;
}
.garantia_new_txt strong {
  color: #fff;
  font-weight: 700;
}
.garantia_new .bg-yellow2 {
  background: #ffda74 !important;
  color: #273947 !important;
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: 700;
  border-radius: 40px;
}

@media (max-width: 768px) {
  .garantia_new_title { font-size: 1.9rem; }
  .garantia_new_txt { font-size: 1rem; }
  .garantia_new_img { height: 100%; }
}

/* ── Sección Propósito ───────────────────────────────── */
.proposito_bg {
  background: #fdf6f0;
  padding: 5rem 0 6rem;
}
.proposito_row {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
}
.proposito_inner {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Visual izquierda */
.proposito_visual {
  flex: 0 0 420px;
  position: relative;
  height: 460px;
}
.prop_circulo_bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #ede8e0;
  top: 20px;
  left: 10px;
}
.prop_circulo_img {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  bottom: 30px;
  right: 20px;
  border: 6px solid #fdf6f0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.prop_circulo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Tarjeta stat */
.prop_stat {
  position: absolute;
  top: 30px;
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  z-index: 2;
}
.prop_stat_num {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #273947;
  margin: 0;
}
.prop_stat_label {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
}

/* Texto */
.proposito_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #273947;
  line-height: 1.1;
  margin: 0;
}
.proposito_texto {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}
.proposito_quote {
  background: #ede8f8;
  border-radius: 20px;
  padding: 1.2em 1.6em;
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-size: 1.6rem;
  color: #444;
  margin: 0.4rem 0 0;
  border: none;
  text-align: center;
}

@media (max-width: 960px) {
  .proposito_row { flex-direction: column; gap: 2rem; }
  .proposito_visual { width: 100%; height: 320px; flex: none; }
  .prop_circulo_bg { width: 240px; height: 240px; }
  .prop_circulo_img { width: 200px; height: 200px; }
}
@media (max-width: 680px) {
  .proposito_title { font-size: 2.4rem; }
  .proposito_texto { font-size: 1rem; }
  .hero_card_bottom { bottom: -24px; right: 0;}
  .tercera { margin: 3.5em auto;}
}

.prop_circulo_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
/* ── CTA Final ───────────────────────────────────────── */
.cta_bg {
  background: #fdf6f0;
  padding: 3rem 1.5rem 5rem;
}
.cta_card {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  background: linear-gradient(135deg, #6dbfb8 0%, #4a9ab5 50%, #7090c0 100%);
  border-radius: 28px;
  padding: 4rem 3rem;
  overflow: hidden;
  text-align: center;
}
/* Burbujas decorativas */
.cta_burbuja {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.cta_burbuja_teal {
  width: 180px;
  height: 180px;
  background: #8dd4c8;
  top: -50px;
  left: -40px;
}
.cta_burbuja_purple {
  width: 150px;
  height: 150px;
  background: #a0a0d0;
  bottom: -40px;
  right: -30px;
}
.cta_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta_title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  max-width: 90%;
}
.cta_desc {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 800px;
  line-height: 1.6;
  font-family: 'Poppins', Arial, sans-serif;
}
.cta_btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.8rem;
}
.cta_btn_white {
  background: #6adb80;
  color: #273947;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
  line-height: 1.5;
}
.cta_btn_white:hover { background: #4DBA63; transition: background-color 0.2s ease;}
.cta_btn_ghost {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.cta_btn_ghost:hover { background: rgba(255,255,255,0.28); }
.cta_btn_ghost .svg_phone { width: 1.5rem; }

@media (max-width: 680px) {
  .cta_title { font-size: 1.9rem; }
  .cta_card { padding: 3rem 1.5rem;  max-width: 100%; }
}