@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --color1-dark: #001040;
  /* Gradiente principal: rosa empolvado -> azul marino del logo */
  --gradient1: linear-gradient(
    155deg,
    #c090a0 0%,
    #b08090 32%,
    #002050 58%,
    #001040 100%
  );
  /* Gradiente secundario: azul marino profundo con acento rosa */
  --gradient2: linear-gradient(
    to bottom,
    #001030 0%,
    #001040 55%,
    #906070 100%
  );
  --title: "Poppins", sans-serif;
  --text: "Open Sans", sans-serif;
  --gradiente1: var(--gradient1);
  --blanco: #ffffff;
  --negro: #001040;
  --azulmedio: #002050;
  --accent: #b08090;
  /* WhatsApp (botón flotante y CTAs de la marca) */
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
  --whatsapp-active: #128c7e;
}
a {
  cursor: pointer !important;
}
.btn-whatsapp {
  display: block;
  width: 75px;
  height: 75px;
  color: #333;
  position: fixed;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
  font-size: 50px;
  background-image: var(--gradiente1);
  border: 2px solid var(--blanco);
}

.icono,
.icono:hover {
  background-image: var(--gradiente1);
}

.btn-whatsapp i {
  color: var(--blanco);
  transition: 0.5s;
  display: block;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-whatsapp span {
  font-size: 0.2em;
  position: absolute;
  padding-left: 7px;
  padding-right: 7px;
  right: 0;
  top: -20px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #de2f36;
  color: #fff;
  border-radius: 100px;
  line-height: 20px;
  transform: scale(0);
}

.icono span,
.icono span p {
  color: var(--blanco) !important;
  margin: auto;
}

@keyframes iconw {
  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }
}

.btn-whatsapp p {
  background: #f1f1f1;
  position: absolute;
  bottom: 0;
  padding: 10px;
  right: 20px;
  font-size: 14px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px 20px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
  line-height: normal;
  -webkit-animation: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both
    slide-in-right;
  animation: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both slide-in-right;
  width: 200px;
}

.btn-whatsapp .close {
  font-size: 0.25em;
  position: absolute;
  color: #95a0a8;
  border-radius: 100px;
  -webkit-animation: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both
    slide-in-right;
  animation: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both slide-in-right;
  background-color: #f1f1f1;
  bottom: 60px;
  right: 20px;
  z-index: 999;
  padding: 1px;
  padding-right: 3px;
  padding-left: 3px;
  border: 1px solid #f1f1f1;
  line-height: 1;
}

.wtext {
  transform: scale(0);
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 100;
  transition: 0.5s ease;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.social-bar {
  position: fixed;
  right: 2px;
  bottom: 100px;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 100;
}

.icono,
.icono span,
.icono:hover i {
  position: relative;
  transition: 0.5s;
}

.icono {
  height: 50px;
  width: 50px;
  display: flex;
  margin-top: 5px;
  border: 2px solid var(--color2);
  border-radius: 10px;
  color: var(--blanco) !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
  background-image: var(--gradiente1);
}

.icono span {
  font-size: 16px;
  padding-right: 5px;
  transform: scale(0);
  width: max-content;
}

.icono span p {
  opacity: 0;
  transition: 0.5s;
}

.icono i {
  position: absolute;
  z-index: 2;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blanco);
  transition: 0.5s;
}

.icono:hover span {
  transition: 0.5s;
  transform: scale(1);
  color: var(--color1);
}

.icono:hover span p {
  opacity: 1;
  transition-delay: 0.5s;
  color: var(--color1);
}

.icono:hover {
  padding: 5px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  width: 100%;
  background-image: var(--gradiente1);
}

.subscribe-one__inner .whatsapp-btn,
.telefono-btn:hover,
.whatsapp-btn:hover {
  background-image: var(--gradiente2);
  color: var(--negro);
}

.icono:hover i {
  top: 0;
  left: 0;
  color: var(--blanco);
  transform: translate(0, 0);
  margin: auto 5px;
}

.doctorweb .doc2 {
  width: 120px;
}

.doctorweb .doc1 {
  width: 25px;
  margin-right: 3px;
  margin-left: 5px;
  animation: 10s infinite doc;
}

@keyframes doc {
  0%,
  10%,
  100%,
  90% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(360deg);
  }
}

.responsive {
  display: none !important;
}

.show {
  transform: scale(1) !important;
  transition: 0.5s ease !important;
}
.contacto {
  position: fixed;
  right: -170px;
  bottom: 100px;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.contacto a {
  background: var(--color2);
  border-radius: 10px 0px 0px 10px;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  -ms-border-radius: 10px 0px 0px 10px;
  -o-border-radius: 10px 0px 0px 10px;
  padding: 10px;
  transform: translateX(16%);
  -webkit-transform: translateX(16%);
  -moz-transform: translateX(16%);
  -ms-transform: translateX(16%);
  -o-transform: translateX(16%);
  display: flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  margin-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.contacto a:hover {
  transform: translateX(-170px);
  -webkit-transform: translateX(-170px);
  -moz-transform: translateX(-170px);
  -ms-transform: translateX(-170px);
  -o-transform: translateX(-170px);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  background: var(--color1);
}
.contacto a {
  color: #fff !important;
}
.contacto i {
  margin-right: 20px;
}
.fab2 {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: var(--whatsapp, #25d366);
  display: flex;
  z-index: 999;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 10px;
  height: 80px;
  width: 80px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 8px 24px -4px, rgba(37, 211, 102, 0.45) 0px 4px 16px -6px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.fab2 i {
  font-size: 4em;
  color: #fff;
}
.fab2:hover {
  background: var(--whatsapp-hover, #1ebe57);
  background-image: none;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.neopad {
  padding: 80px 0px;
}
.mobile-overlay__logo {
  padding-right: 10px;
}
.headerBottom__infos .footer-block__address-text span,
.sidebar-block span {
  color: var(--black);
  margin-left: 10px;
}
.service h2,
.service h3 {
  font-weight: 600;
}
.seo {
  height: 200px;
  overflow-y: scroll;
}
.seo a {
  color: var(--white);
}
.mobile-buttons {
  position: fixed;
  bottom: 0px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 10px;
  justify-content: space-evenly;
  background: var(--black);
  display: none;
}

.mobile-buttons a {
  background: var(--color1);
  border-radius: 50px;
  padding: 10px 30px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.mobile-buttons a:nth-child(2) {
  background: var(--logo-rose, #b08090);
}

.mobile-buttons a[data-type="whatsapp"] {
  background: var(--whatsapp, #25d366) !important;
}

.mobile-buttons a[data-type="whatsapp"]:hover {
  background: var(--whatsapp-hover, #1ebe57) !important;
}
.mobile-buttons a:hover {
  background: linear-gradient(135deg, var(--color1-dark), var(--color1));
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.mobile-buttons a i {
  margin-right: 10px;
}
#banner-form .formulario {
  text-align: center;
}
#banner-form .formulario .titulo,
#banner-form .profile-info span strong {
  color: var(--color2);
  font-weight: 900;
}
#banner-form {
  z-index: 9;
  position: relative;
  border-radius: 20px;
  padding: 10px;
  margin-top: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#banner-form .formulario .titulo {
  font-size: 16px !important;
}
#banner-form .formulario .texto {
  font-size: 14px !important;
}
#banner-form .input-contenedor {
  display: flex;
  justify-content: center;
}
#banner-form .input-contenedor .input-g {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 5px;
}
#banner-form .input-contenedor .input-g2 {
  flex-direction: row;
  justify-content: space-evenly;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 5px;
}
#banner-form .input-contenedor .input-g3 {
  display: flex;
  flex-direction: row;
  padding: 5px;
  width: 100%;
  margin-bottom: 20px;
  align-items: center;
}
#banner-form .input-contenedor .input-g3 label {
  width: 90%;
  font-size: 14px !important;
}
#banner-form .formulario .texto strong,
#banner-form .input-contenedor .input-g3 label strong {
  color: var(--color2);
}
#banner-form .head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#banner-form .profile-image {
  position: relative;
  height: 100px;
  width: 50px;
  margin-right: 20px;
}
#banner-form .profile-info span {
  display: block;
  font-size: 16px;
  color: #000;
}
#banner-form img {
  border-radius: 100px;
}
#banner-form .circle {
  position: absolute;
  bottom: 0;
  right: 10px;
  height: 15px;
  width: 15px;
  border-radius: 100px;
  background: var(--color1);
}
#banner-form .formulario .titulo {
  margin: 0;
}
#banner-form .formulario input,
#banner-form .formulario select {
  border-radius: 10px !important;
  padding: 10px 10px 10px 20px;
  background: #f2f2f2;
  border: 2px solid var(--color2);
  height: auto !important;
  display: block !important;
  line-height: normal !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: 14px !important;
}
input[type="checkbox"] {
  border-radius: 100px !important;
}
#banner-form .formulario input[type="checkbox"] {
  width: 10% !important;
  height: 20px !important;
}
#banner-form .formulario input::placeholder {
  color: #000;
}
#banner-form .formulario button,
#banner-form a {
  border-radius: 100px;
  padding: 10px 20px;
  color: #fff;
  border: 2px solid #fff;
  background: var(--color2);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 5px;
}
#banner-form a {
  display: inline-block !important;
  background-color: #000;
}
#banner-form .formulario button:hover {
  background: #000;
  transition: 0.5s;
}
#banner-form .formulario a:hover {
  background: var(--color2);
}
#banner-form .respuestaformulario {
  background: #000;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  margin: 10px 0;
  display: none;
  font-weight: 900;
}
#banner-form .fail {
  display: block;
  background: #f36e59;
}
#banner-form .send {
  display: block;
  background: var(--azulmedio);
}
@media (max-width: 991px) {
  #banner-form .formulario a,
  #banner-form .input-g2 {
    display: block !important;
  }
  #banner-form .input-contenedor {
    display: flex;
    flex-direction: column;
  }
  #banner-form .input-contenedor .input-g2 {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .mobile-buttons {
    display: flex;
  }
  .neopad {
    padding: 40px 0px;
  }
  .contacto {
    bottom: 0px;
    left: 0px !important;
    width: 100%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    flex-direction: row;
    justify-content: space-around;
    background: var(--color2);
    padding: 5px 0px;
  }
  .contacto a {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 0px;
    border: 0px;
  }
  .contacto a i {
    margin: 0px;
  }
  .contacto a span {
    display: none;
  }
  .fab2 {
    bottom: 55px;
  }
  .fullwidth {
    display: none !important;
  }
  .responsive {
    display: block !important;
  }
}

/* Sección beneficios — fondo y tarjetas más visuales (sin cambiar estructura) */
#beneficios.services-three {
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(176, 128, 144, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 16, 64, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #faf8f9 0%, #f7f2f4 38%, #ffffff 72%, #f5f0f2 100%);
}

#beneficios.services-three::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 144, 160, 0.16) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

#beneficios.services-three::after {
  content: "";
  position: absolute;
  bottom: 6%;
  left: -5%;
  width: min(460px, 50vw);
  height: min(460px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 16, 64, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#beneficios .container {
  position: relative;
  z-index: 1;
}

#beneficios .section-title {
  margin-bottom: 56px;
}

#beneficios .section-title__tagline {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(176, 128, 144, 0.28);
  box-shadow: 0 6px 18px rgba(0, 16, 64, 0.06);
}

#beneficios .services-three__single {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(250, 248, 249, 0.96) 55%,
    rgba(247, 242, 244, 0.94) 100%
  );
  border: 1px solid rgba(176, 128, 144, 0.2);
  border-radius: 16px;
  box-shadow:
    0 16px 42px rgba(0, 16, 64, 0.07),
    0 4px 12px rgba(176, 128, 144, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

#beneficios .services-three__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;

}

#beneficios .services-three__single::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 128, 144, 0.12) 0%, transparent 72%);
  pointer-events: none;
}

#beneficios .services-three__single:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 128, 144, 0.38);
  box-shadow:
    0 24px 54px rgba(0, 16, 64, 0.12),
    0 10px 28px rgba(176, 128, 144, 0.16);
}

#beneficios .services-three__icon {
  background: linear-gradient(145deg, #ffffff 0%, #f5f0f2 100%);
  border: 1px solid rgba(176, 128, 144, 0.22);
  box-shadow: 0 10px 22px rgba(0, 16, 64, 0.08);
}

#beneficios .services-three__icon::before {
  background: linear-gradient(135deg, var(--logo-navy) 0%, var(--logo-rose) 100%);
}

#beneficios .services-three__title {
  color: var(--logo-navy);
}

#beneficios .services-three__text {
  color: var(--careon-gray);
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  #beneficios.services-three {
    padding: 80px 0 60px;
  }

  #beneficios.services-three::before,
  #beneficios.services-three::after {
    opacity: 0.65;
  }
}

/* Bloque CTA beneficios con foto de la doctora */
.services-three__get-a-quote--doctor {
  min-height: 340px;
  display: flex;
  align-items: stretch;
  padding: 0;
  background-color: var(--color1-dark);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 16, 64, 0.22);
}

.services-three__get-a-quote--doctor .services-three__get-a-quote-bg {
  background-position: right center;
  background-size: cover;
}

.services-three__get-a-quote--doctor .services-three__get-a-quote-bg::before {
  background:linear-gradient(105deg, rgba(0, 16, 64, 0.96) 0%, rgba(0, 16, 64, 0.88) 42%, rgb(176 128 144 / 88%) 68%, rgb(176 128 144) 100%)
}

.services-three__get-a-quote-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 36px 40px 40px;
}

.services-three__get-a-quote-badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.services-three__get-a-quote-lead {
  max-width: 92%;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.services-three__get-a-quote--doctor .services-three__get-a-quote-sub-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.services-three__get-a-quote--doctor .services-three__get-a-quote-title {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.25;
}

.services-three__get-a-quote--doctor .services-three__thm-btn {
  margin-top: 24px;
}

.services-three__get-a-quote--doctor .services-three__thm-btn .thm-btn {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.services-three__get-a-quote--doctor .services-three__thm-btn .thm-btn:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .services-three__get-a-quote--doctor {
    min-height: 300px;
  }

  .services-three__get-a-quote-content {
    padding: 28px 24px 32px;
  }

  .services-three__get-a-quote-lead {
    max-width: 100%;
    font-size: 14px;
  }

  .services-three__get-a-quote--doctor .services-three__get-a-quote-title {
    font-size: 24px;
  }

  .services-three__get-a-quote--doctor .services-three__get-a-quote-bg {
    background-position: 75% center;
  }
}
