@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
}

/*VARIABLES IMPORTANTES*/
/*COLORES*/
/*FUENTES*/
/*TITULOS*/
h1 {
  display: inline;
  font-family: "TT Drugs bold";
  color: #1C2C54;
}

h2 {
  display: inline;
  font-family: "TT Drugs bold";
  color: #1C2C54;
  text-align: center;
}

@font-face {
  font-family: "TT Drugs";
  src: url("/recursos/fuentes/TTDrugs-Regular.woff2") format("woff2"), url("/recursos/fuentes/TTDrugs-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Drugs bold";
  src: url("/recursos/fuentes/TTDrugsCondensed-Bold.woff2") format("woff2"), url("/recursos/fuentes/TTDrugsCondensed-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Drugs italic";
  src: url("/recursos/fuentes/TTDrugsCondensed-LightItalic.woff2") format("woff2"), url("/recursos/fuentes/TTDrugsCondensed-LightItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*ESTILOS GENERALES*/
h1 {
  font-family: "TT Drugs bold";
}

body {
  background-color: #F8F9FA;
  font-family: "Lora";
}

.boton {
  background-color: #E3B448;
  color: #F8F9FA;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.boton:hover {
  background-color: #F8F9FA;
  border: 1px solid #E3B448;
  color: #E3B448;
}

img {
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
img:hover {
  filter: none;
}

/*POLITICAS DE COOKIES*/
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  color: #1C2C54;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 999;
}

.cookie-container button {
  background: #1C2C54;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-container button:hover {
  background: white;
  color: #1C2C54;
  border: 1px solid #1C2C54;
}

.hidden {
  display: none;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.reject-btn {
  background: #1C2C54;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.reject-btn:hover {
  background: white;
  color: #1C2C54;
  border: 1px solid #1C2C54;
}

/*WHATSAPP*/
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #F8F9FA;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
  filter: grayscale(0);
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/*MENU*/
.navbar {
  background-color: #F8F9FA;
}
.navbar .navbar-toggler {
  border: none;
  box-shadow: none;
}
.navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
  box-shadow: none;
  outline: none;
}

.contenedor_logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
  filter: grayscale(0);
}
.contenedor_logo img:hover {
  transform: scale(1.1);
}

.dropdown-menu {
  background: white;
  border-radius: none;
  border: none;
  color: #8D8D8D;
}
.dropdown-menu li > a:hover {
  background-color: transparent;
  font-family: "TT Drugs bold";
}

.dropdown-item {
  font-weight: 300;
  font-size: 0.8rem;
}

.nav-item.dropdown .nav-link {
  display: inline-block;
  padding-right: 0.3rem;
}

.nav-item.dropdown .dropdown-toggle {
  padding-left: 0.2rem;
}

.boton-recursos {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*FOOTER*/
footer div a img {
  filter: grayscale(0);
  height: 30px;
  width: 30px;
}
footer .aviso {
  font-size: 0.7rem;
  font-style: italic;
  margin: 0.5rem;
}
footer .aviso a {
  text-decoration: none;
  color: gray;
}

/*INDEX*/
/*HERO SECTION*/
.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 80vh;
  overflow: hidden;
}
.hero .hero_imagen {
  background-color: #1C2C54;
  position: absolute;
  height: 50vh;
  width: 100vw;
  object-fit: cover;
  z-index: -1;
  top: 0;
  bottom: 0;
}
.hero .hero_overlay {
  display: none;
}
.hero .hero_texto {
  position: absolute;
  background-color: white;
  width: 80%;
  z-index: 1;
  right: 10%;
  top: 35%;
  max-width: 700px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: 8px;
  color: #1C2C54;
  transition: all 0.3s ease;
}
.hero .hero_texto:hover {
  transform: scale(1.1);
}
.hero .hero_texto div h1 {
  text-decoration: underline;
  text-decoration-color: #E3B448;
  font-size: 1.3rem;
}
.hero .hero_texto div p {
  font-family: "Lora";
  font-weight: 400;
  font-size: 0.7rem;
  margin-top: 0.8rem;
}
.hero .hero_texto div p span {
  font-family: "TT Drugs italic";
}
.hero .hero_texto div .boton {
  font-size: 0.7rem;
}

@media (min-width: 768px) {
  .hero {
    height: 70vh;
    margin-bottom: 50px;
  }
  .hero .hero_imagen {
    height: 90vh;
    position: relative;
    width: 100vw;
    object-position: center left;
  }
  .hero .hero_overlay {
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #1C2C54;
    height: 90vh;
    top: 0;
    bottom: 0;
    left: 55%;
    width: 100vw;
    transform: skewX(-20deg);
  }
  .hero .hero_texto {
    top: 30%;
    right: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    min-height: 300px;
  }
  .hero .hero_texto div h1 {
    font-size: 2rem;
  }
  .hero .hero_texto div p {
    font-size: 1rem;
  }
  .hero .hero_texto div .boton {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
.manifiesto {
  background-color: #1C2C54;
  opacity: 1;
  color: #F8F9FA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.manifiesto .manifiesto_texto {
  animation: slideInLeft 2s ease forwards;
  font-size: 1rem;
  text-align: center;
  font-family: "Lora";
  font-style: italic;
}
.manifiesto .manifiesto_texto span {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .manifiesto .manifiesto_texto {
    font-size: 1.5rem;
    text-align: center;
  }
  .manifiesto .manifiesto_texto span {
    font-size: 2.5rem;
  }
}
/*SERVICIOS*/
.titulo_servicios {
  margin: 2%;
  text-align: center;
}
.titulo_servicios h2 {
  font-size: 1rem;
  text-align: center;
  font-family: "Lora";
}
.titulo_servicios h2 span {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}

.card_servicios .card-header {
  border: 1px solid #1C2C54;
  background-color: #1C2C54;
  color: #F8F9FA;
  font-family: "TT Drugs bold";
  transition: all 0.5s ease;
}
.card_servicios .card-body {
  border: 1px solid #1C2C54;
  transition: all 0.5s ease;
}
.card_servicios .card-body h5 {
  font-family: "TT Drugs bold";
}
.card_servicios .card-body p {
  font-family: "Lora";
  color: #8D8D8D;
  font-size: 0.8rem;
}
.card_servicios .card-body .lista_servicios {
  font-size: 0.8rem;
  font-family: "Lora";
  color: #8D8D8D;
  text-align: left;
  display: flex;
  align-items: start;
  justify-content: start;
}
.card_servicios .card-body .lista_servicios ul {
  list-style: none;
  padding-left: 1.5em;
}
.card_servicios .card-body .lista_servicios ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #1C2C54;
  font-size: 1em;
  display: inline-block;
  width: 1em;
}
.card_servicios:hover .card-header {
  background-color: #F8F9FA;
  color: #1C2C54;
}
.card_servicios:hover .card-body {
  background-color: #1C2C54;
  color: #F8F9FA;
}
.card_servicios:hover .card-body p {
  color: #F8F9FA;
}
.card_servicios:hover .card-body ul {
  color: #F8F9FA;
}
.card_servicios:hover .card-body ul li::before {
  color: #F8F9FA;
}

@media (min-width: 768px) {
  .titulo_servicios h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .titulo_servicios h2 span {
    font-size: 2.5rem;
  }
}
/*OFERTAS*/
.ofertas {
  background-color: #1C2C54;
  text-align: center;
}
.ofertas .titulo_ofertas {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ofertas .titulo_ofertas h2 {
  font-size: 2.5rem;
  color: #F8F9FA;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  align-items: center;
  justify-content: start;
  scroll-snap-type: x mandatory;
}
.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.scroll-container .col {
  min-width: 250px;
  max-width: 280px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.scroll-container .col:hover {
  transform: translateY(-20px);
}

@media (min-width: 768px) {
  .scroll-container {
    justify-content: center;
  }
}
.card_ofertas {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 20px solid #E3B448;
}

.card-body-ofertas {
  border-radius: 10px;
  background-color: white;
  width: 100%;
  min-height: 40vh;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-body-ofertas div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #1C2C54;
}
.card-body-ofertas h3 {
  font-family: "Lora";
  font-size: 1.5rem;
  text-align: center;
  height: 3rem;
}
.card-body-ofertas h4 {
  font-family: "TT Drugs bold";
  height: 4rem;
  margin: 10px;
  font-size: 3.5rem;
}
.card-body-ofertas .old-pricing-card-title {
  text-decoration: line-through;
  font-size: 1rem;
  font-family: "Lora";
  font-style: italic;
}
.card-body-ofertas div > p {
  font-size: 0.5rem;
  color: gray;
  font-style: italic;
}

.pricing-card-title {
  font-size: 40px;
}
.pricing-card-title small {
  font-size: 20px;
}

/*PROCESO*/
.titulo_proceso, .titulo_pitch {
  margin: 2%;
  text-align: center;
}
.titulo_proceso h2, .titulo_pitch h2 {
  font-size: 2rem;
  font-family: "TT Drugs bold";
  color: #1C2C54;
  text-align: center;
  margin: 1rem;
}
.titulo_proceso h2 small, .titulo_pitch h2 small {
  font-size: 1rem;
  font-family: "TT Drugs";
}

.proceso_mandos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}
.proceso_mandos .boton-circulo {
  background-color: #1C2C54;
  opacity: 0.5;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.proceso_mandos .boton-circulo p {
  color: #F8F9FA;
  font-family: "TT Drugs bold";
  font-size: 2.8rem;
  padding-top: 10px;
}
.proceso_mandos .boton-circulo:hover {
  opacity: 1;
  cursor: pointer;
}

.boton-circulo.activo {
  opacity: 1;
  box-shadow: 0 0 0 2px #222 inset;
  transform: scale(1.2);
}

.proceso_index {
  display: flex;
  flex-direction: row;
  height: 100vh;
  margin-top: 30px;
}
.proceso_index .paso_proceso {
  width: 50%;
  position: relative;
}
.proceso_index .paso_proceso .numero_proceso {
  position: absolute;
  background-color: #1C2C54;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  left: 15%;
  font-family: "TT Drugs bold";
  font-size: 4rem;
}
.proceso_index .paso_proceso p {
  color: #F8F9FA;
  padding-top: 10px;
}
.proceso_index .contenedor_proceso {
  position: absolute;
  top: 10%;
  left: 30%;
  background-color: #F8F9FA;
  border: 1px solid #1C2C54;
  width: 75vw;
  max-width: 700px;
  box-shadow: 2px 2px 5px gray;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.proceso_index .contenedor_proceso .imagen_proceso img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.proceso_index .contenedor_proceso.fade-out {
  opacity: 0;
}
.proceso_index .contenedor_proceso.fade-in {
  opacity: 1;
}
.proceso_index .contenedor_proceso .contenido_proceso {
  padding: 5%;
}
.proceso_index .contenedor_proceso .contenido_proceso .titulo_contenedor_proceso {
  font-size: 2rem;
  text-align: center;
  color: #1C2C54;
}
.proceso_index .contenedor_proceso .contenido_proceso .descripcion_contenedor_proceso p {
  font-size: 0.8rem;
  font-family: "Lora";
  color: #8D8D8D;
  text-align: justify;
}
.proceso_index .contenedor_proceso .contenido_proceso .lista_contenedor_proceso {
  font-size: 0.8rem;
  font-family: "Lora";
  color: #8D8D8D;
  text-align: left;
}
.proceso_index .contenedor_proceso .contenido_proceso .lista_contenedor_proceso ul {
  list-style: none;
  padding-left: 1.5em;
}
.proceso_index .contenedor_proceso .contenido_proceso .lista_contenedor_proceso ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #1C2C54;
  font-size: 1em;
  display: inline-block;
  width: 1em;
}

@media (min-width: 800px) {
  .proceso_mandos {
    height: 70vh;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .proceso_index {
    width: 80%;
    height: 50vh;
  }
  .proceso_index .paso_proceso .contenedor_proceso {
    width: 70vw;
    display: flex;
    max-width: 700px;
  }
  .proceso_index .paso_proceso .contenedor_proceso .imagen_proceso {
    width: 40%;
  }
  .proceso_index .paso_proceso .contenedor_proceso .imagen_proceso img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .proceso_index .paso_proceso .contenedor_proceso .contenido_proceso {
    width: 60%;
    padding: 5%;
  }
}
/*TESTIMONIOS*/
.contenedor_general_testimonios {
  background-color: #1C2C54;
}
.contenedor_general_testimonios h2 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
}

.scroll-container_testimonios {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 25px;
  align-items: center;
  justify-content: start;
  scroll-snap-type: x mandatory;
  text-align: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-container_testimonios::-webkit-scrollbar {
  display: none;
}
.scroll-container_testimonios .card-testimonios {
  min-width: 300px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #E3B448;
}
.scroll-container_testimonios .card-testimonios .card-img-top {
  margin-top: 1rem;
  max-width: 180px;
  max-height: 180px;
  min-width: 180px;
  min-height: 180px;
  object-fit: cover;
  border-radius: 50%;
}
.scroll-container_testimonios .card-testimonios .card-img-top img {
  max-width: 180px;
  max-height: 180px;
  min-width: 180px;
  min-height: 180px;
  object-fit: cover;
}
.scroll-container_testimonios .card-testimonios h5 {
  font-family: "TT Drugs bold";
  font-size: 2.2rem;
  color: #1C2C54;
}
.scroll-container_testimonios .card-testimonios p {
  font-size: 0.8rem;
  color: #8D8D8D;
}

/*PITCH*/
.titulo_pitch {
  margin: 1.5rem;
}

.contenedor_general_pitch {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #F8F9FA;
}
.contenedor_general_pitch .contenedor_pitch_marco_fondo_decoracion {
  display: none;
}
.contenedor_general_pitch .contenedor_pitch_marco_fondo_azul {
  display: none;
}
.contenedor_general_pitch .contenedor_pitch_imagen {
  position: absolute;
  z-index: 0;
  top: 0;
  left: -40%;
}
.contenedor_general_pitch .contenedor_pitch_imagen img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.contenedor_general_pitch .contenedor_pitch_texto {
  position: absolute;
  top: 5%;
  right: 0;
  width: 80vw;
  z-index: 1;
  padding: 20px;
  background-color: #1C2C54;
  opacity: 0.75;
}
.contenedor_general_pitch .contenedor_pitch_texto p {
  font-family: "Lora";
  font-size: 0.8rem;
  color: #F8F9FA;
  text-align: justify;
  opacity: 1;
}

@media (min-width: 600px) {
  .contenedor_general_pitch {
    position: relative;
  }
  .contenedor_general_pitch .contenedor_pitch_marco_fondo_decoracion {
    position: absolute;
    display: flex;
    background-color: #8D8D8D;
    opacity: 0.75;
    z-index: 0;
    height: 70vh;
    width: 80vw;
    top: 0;
    left: 5%;
  }
  .contenedor_general_pitch .contenedor_pitch_marco_fondo_azul {
    position: absolute;
    display: flex;
    background-color: #1C2C54;
    opacity: 0.75;
    z-index: 0;
    height: 70vh;
    width: 80vw;
    top: 5%;
    left: 10%;
  }
  .contenedor_general_pitch .contenedor_pitch_imagen {
    top: 5%;
    left: 12%;
    z-index: 0.5;
  }
  .contenedor_general_pitch .contenedor_pitch_imagen img {
    height: 80vh;
  }
  .contenedor_general_pitch .contenedor_pitch_texto {
    top: 5%;
    right: 10%;
    background-color: transparent;
    width: 50%;
    z-index: 1;
  }
  .contenedor_general_pitch .contenedor_pitch_texto p {
    color: #F8F9FA;
    font-size: 1.1rem;
  }
}
/*CTA INDEX*/
.cta_index {
  background-color: #F8F9FA;
  color: #1C2C54;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "TT Drugs bold";
  font-size: 1rem;
}
.cta_index:hover {
  color: #F8F9FA;
  background-color: #1C2C54;
}

@media (min-width: 768px) {
  .cta_index {
    font-size: 1.5rem;
  }
  .cta_index .boton {
    font-size: 1rem;
  }
}
.pulso {
  animation: pulso 8s infinite;
}
@keyframes pulso {
  0%, 50%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/*SOBRE MI*/
.titulo-sobremi, .contenedor_valores_titulo h2 {
  text-align: center;
  margin: 1rem;
}
.titulo-sobremi h1, .contenedor_valores_titulo h2 h1 {
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.titulo-sobremi p, .contenedor_valores_titulo h2 p {
  font-size: 0.8rem;
  text-align: center;
  color: #1C2C54;
}

.contenedor_general_historia {
  background-color: #1C2C54;
}
.contenedor_general_historia .titulo-sobremi-historia {
  padding: 20px;
  text-align: center;
}
.contenedor_general_historia .titulo-sobremi-historia h2 {
  color: #F8F9FA;
  font-size: 2.5rem;
}
.contenedor_general_historia .scroll-container_sobremi .col {
  min-width: 320px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.contenedor_general_historia .scroll-container_sobremi .col .card {
  width: 300px;
  flex: 0 0 auto;
  border: 1px solid #E3B448;
  border-top: 10px solid #E3B448;
}
.contenedor_general_historia .scroll-container_sobremi .col .card img {
  height: 150px;
  object-fit: cover;
}
.contenedor_general_historia .scroll-container_sobremi .col .card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contenedor_general_historia .scroll-container_sobremi .col .card .card-body .card-text {
  text-align: center;
}
.contenedor_general_historia .scroll-container_sobremi .col .card .accordion-collapse .accordion-body {
  text-align: justify;
}

/*PRESENTACION*/
.marco_presentacion {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.marco_presentacion img {
  position: absolute;
  z-index: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.marco_presentacion .marco_presentacion_overlay {
  position: absolute;
  z-index: 0.5;
  height: 100vh;
  width: 100%;
  background-color: #1C2C54;
  opacity: 0.4;
}
.marco_presentacion .marco_presentacion_overlay img {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 5%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}
.marco_presentacion .texto_presentacion {
  position: absolute;
  z-index: 0.9;
  height: 100vh;
  width: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  color: transparent;
  font-size: 0.75rem;
  transition: all 0.5s ease;
}
.marco_presentacion .texto_presentacion:hover {
  color: #1C2C54;
  background-color: #F8F9FA;
  opacity: 0.9;
}
.marco_presentacion .texto_presentacion:hover p {
  opacity: 1;
}
.marco_presentacion .texto_presentacion:focus {
  color: #1C2C54;
  background-color: #F8F9FA;
  opacity: 0.9;
}
.marco_presentacion .texto_presentacion:focus p {
  opacity: 1;
}

@keyframes float {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 768px) {
  .marco_presentacion {
    height: 50vh;
  }
  .marco_presentacion img {
    height: 50vh;
    object-position: top center;
  }
  .marco_presentacion .marco_presentacion_overlay {
    height: 50vh;
  }
  .marco_presentacion .texto_presentacion {
    height: 50vh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 18rem;
    padding-right: 18rem;
  }
}
/*QUOTE*/
.marco_presentacion_quote, .marco_presentacion_cta {
  background-color: #1C2C54;
  padding: 1rem;
  color: #F8F9FA;
}

@media (min-width: 768px) {
  .marco_presentacion_quote, .marco_presentacion_cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marco_presentacion_quote div, .marco_presentacion_cta div {
    font-size: 2rem;
    padding: 2rem;
    font-style: italic;
  }
}
/*Sobre Nosotros*/
.contenedor_sobrenostros {
  width: 100%;
  padding: 1rem;
}
.contenedor_sobrenostros .caja_sobrenosotros {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contenedor_sobrenostros .caja_sobrenosotros img {
  height: 300px;
  width: 300px;
  object-fit: cover;
  border-radius: 100%;
}
.contenedor_sobrenostros .caja_sobrenosotros p {
  text-align: center;
  color: #1C2C54;
}

/*VALORES*/
.contenedor_valores_titulo {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.contenedor_valores_titulo h2 {
  font-size: 2.5rem;
}

.contenedor_valores {
  perspective: 1000px;
  width: 300px;
  height: 300px;
  margin: 20px;
}

.contenedor_valores_caja {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
  cursor: pointer;
}
.contenedor_valores_caja:hover {
  transform: rotateY(180deg);
}
.contenedor_valores_caja .cara {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor1 {
  background: url("/recursos/valor-1.jpg") center/cover no-repeat;
  z-index: 1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor1 h3 {
  font-weight: bold;
  font-family: "TT Drugs bold";
  font-size: 2rem;
  color: #1C2C54;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor1 {
  background: url("/recursos/valor-1.jpg") center/cover no-repeat;
  transform: rotateY(180deg);
  position: relative;
  z-index: 1;
  font-family: "Lora";
  font-size: 1rem;
  color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #8D8D8D;
  opacity: 0.5;
  z-index: -1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor2 {
  background: url("/recursos/valor-2.jpg") center/cover no-repeat;
  z-index: 1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor2::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor2 h3 {
  font-weight: bold;
  font-family: "TT Drugs bold";
  font-size: 2rem;
  color: #1C2C54;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor2 {
  background: url("/recursos/valor-2.jpg") center/cover no-repeat;
  transform: rotateY(180deg);
  position: relative;
  z-index: 1;
  font-family: "Lora";
  font-size: 1rem;
  color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #8D8D8D;
  opacity: 0.5;
  z-index: -1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor3 {
  background: url("/recursos/valor-3.jpg") center/cover no-repeat;
  z-index: 1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor3::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor3 h3 {
  font-weight: bold;
  font-family: "TT Drugs bold";
  font-size: 2rem;
  color: #1C2C54;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor3 {
  background: url("/recursos/valor-3.jpg") center/cover no-repeat;
  transform: rotateY(180deg);
  position: relative;
  z-index: 1;
  font-family: "Lora";
  font-size: 1rem;
  color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #8D8D8D;
  opacity: 0.5;
  z-index: -1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor4 {
  background: url("/recursos/valor-4.jpg") center/cover no-repeat;
  z-index: 1;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor4::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_frente_valor4 h3 {
  font-weight: bold;
  font-family: "TT Drugs bold";
  font-size: 2rem;
  color: #1C2C54;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor4 {
  background: url("/recursos/valor-4.jpg") center/cover no-repeat;
  transform: rotateY(180deg);
  position: relative;
  z-index: 1;
  font-family: "Lora";
  font-size: 1rem;
  color: #F8F9FA;
}
.contenedor_valores_caja .contenedor_valores_caja_reverso_valor4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #8D8D8D;
  opacity: 0.5;
  z-index: -1;
}

.marco_presentacion_cta .frase-cta a {
  color: #F8F9FA;
}

/*FAQS*/
.titulo_faqs {
  background-color: #1C2C54;
  color: #F8F9FA;
  text-align: center;
  padding: 1rem;
}
.titulo_faqs h1 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.titulo_faqs p {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

.contenedor_general_faqs {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contenedor_general_faqs .contenedor_general_faqs_contenedor_imagen img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: bottom center;
}

.accordion-button::after {
  display: none;
}

.accordion-item {
  border: none !important;
}
.accordion-item .accordion-header .accordion-button {
  background-color: #F8F9FA;
  font-family: "Lora";
  color: #1C2C54;
  outline: none !important;
  box-shadow: none !important;
}
.accordion-item .accordion-header .accordion-button:focus {
  background-color: #1C2C54;
  color: #F8F9FA;
}
.accordion-item .accordion-header .accordion-button:active {
  background-color: #1C2C54;
  color: #F8F9FA;
}
.accordion-item .accordion-body {
  font-size: 0.8rem;
  text-align: justify;
  color: #8D8D8D;
}

@media (min-width: 600px) {
  .titulo_faqs {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .contenedor_general_faqs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .contenedor_general_faqs .contenedor_general_faqs_contenedor_imagen img {
    height: 500px;
    width: 500px;
    border-radius: 50%;
    object-fit: cover;
    object-position: bottom center;
  }
  .contenedor_general_faqs .accordion-item {
    min-width: 550px;
    max-width: 550px;
  }
}
.cta_faqs {
  background-color: #1C2C54;
  font-size: 1rem;
  color: #F8F9FA;
  padding: 1rem;
  text-align: center;
}
.cta_faqs a {
  color: #F8F9FA;
}

@media (min-width: 600px) {
  .cta_faqs {
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 1.5rem;
  }
}
/*RECURSOS*/
/*HERO*/
.hero-recursos {
  background-color: #1C2C54;
  text-align: center;
  color: #F8F9FA;
  padding: 1rem;
  margin-bottom: 1.8rem;
}
.hero-recursos h1 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.hero-recursos p {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

/*CARDS RECURSOS*/
.card-recursos {
  box-shadow: 2px 2px 10px gray;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}
.card-recursos .card-img-top {
  height: 200px;
  object-fit: cover;
}
.card-recursos .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-recursos .card-body .card-text {
  text-align: justify;
  font-size: 0.8rem;
}
.card-recursos:hover {
  transform: translateY(-20px);
}

/*CTA*/
.cta-recursos {
  background-color: #1C2C54;
  color: #F8F9FA;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
}
.cta-recursos a {
  color: #F8F9FA;
}

@media (min-width: 768px) {
  .hero-recursos p {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .card-recursos {
    min-height: 500px;
  }
  .card-recursos .card-body {
    justify-content: space-evenly;
  }
  .cta-recursos {
    font-size: 1.5rem;
  }
}
/*SERVICIOS*/
.hero_servicios {
  background-color: #1C2C54;
  color: #F8F9FA;
  padding: 1rem;
}
.hero_servicios h1 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.hero_servicios p {
  font-size: 0.8rem;
  text-align: center;
}

.card-servios {
  min-width: 300px;
  max-width: 300px;
}
.card-servios img {
  height: 200px;
  object-fit: cover;
}
.card-servios .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  text-align: center;
}
.card-servios .card-body span {
  text-align: justify;
}

.boton-desplegar {
  background-color: #1C2C54;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8F9FA;
  text-decoration: none;
  font-size: 1.5rem;
}

.titulo_tarifas {
  text-decoration: underline;
}
.titulo_tarifas span {
  font-size: 1.2rem;
  font-style: italic;
}

/*SERVICIOS DETALLE*/
.hero-servicios-detalle-general {
  background-color: #1C2C54;
  color: #F8F9FA;
  padding: 1rem;
}
.hero-servicios-detalle-general h1 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.hero-servicios-detalle-general p {
  text-align: center;
  font-size: 0.8rem;
}

/*FAQS GENERALES*/
@media (min-width: 768px) {
  .accordion-servicios-general {
    max-width: 600px;
    min-width: 600px;
  }
}
/*SELECTOR DE SERVICIO*/
.scroll-container-serviciosdetalle {
  padding: 2rem;
  justify-content: start;
}
.scroll-container-serviciosdetalle .col {
  min-width: 300px;
  min-height: 440px;
}
.scroll-container-serviciosdetalle .col .card-servicios {
  width: 90%;
}

.servicios-detalle {
  background-color: #1C2C54;
}
.servicios-detalle img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.servicios-detalle .cuerpo_servicios_detalle {
  padding: 1rem;
  color: #F8F9FA;
  text-align: center;
}
.servicios-detalle .cuerpo_servicios_detalle .titulo_serviciosDetalle {
  color: #F8F9FA !important;
  text-align: center;
  font-size: 1.5rem;
  font-family: "TT Drugs bold";
}
.servicios-detalle .cuerpo_servicios_detalle .titulo_serviciosDetalle h2 {
  color: #F8F9FA !important;
  text-align: center;
  font-size: 1.5rem;
  font-family: "TT Drugs bold";
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.servicios-detalle .cuerpo_servicios_detalle .descrpicion_serviciosDetalle {
  font-size: 0.8rem;
}
.servicios-detalle .lista_servicios_detalle {
  font-size: 0.8rem;
  font-family: "Lora";
  text-align: left;
}
.servicios-detalle .lista_servicios_detalle h3 {
  font-size: 1.2rem;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.servicios-detalle .lista_servicios_detalle ul {
  list-style: none;
  padding-left: 1.5em;
}
.servicios-detalle .lista_servicios_detalle ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #F8F9FA;
  font-size: 1em;
  display: inline-block;
  width: 1em;
}
.servicios-detalle .titulo_faqs_serviciosDetalle h3 {
  font-size: 1.2rem;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.servicios-detalle .accordion-servicios-detalle {
  background-color: #1C2C54 !important;
  color: #F8F9FA;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item {
  background-color: #1C2C54 !important;
  color: #F8F9FA;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item .accordion-header {
  background-color: #1C2C54 !important;
  color: #F8F9FA;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item .accordion-header .accordion-button {
  background-color: #1C2C54 !important;
  color: #F8F9FA;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item .accordion-header .accordion-button:focus {
  color: #F8F9FA;
  font-weight: bold;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item .accordion-header .accordion-button:active {
  color: #F8F9FA;
  font-weight: bold;
}
.servicios-detalle .accordion-servicios-detalle .accordion-item .accordion-body {
  color: #F8F9FA;
}

@media (min-width: 600px) {
  .scroll-container-serviciosdetalle {
    justify-content: center;
  }
  .servicios-detalle {
    display: flex;
    flex-direction: row;
    height: 100vh;
  }
  .servicios-detalle img {
    height: 100%;
    width: 30%;
  }
  .servicios-detalle {
    margin: 3rem;
    border-radius: 50px;
  }
  .servicios-detalle img {
    min-width: 700px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .servicios-detalle .cuerpo_servicios_detalle {
    padding: 2rem;
  }
}
/*ENTRADAS BLOG*/
.contenedor_blog {
  position: relative;
  width: 300px;
  height: 300px;
}
.contenedor_blog .contenedor_blog_imagen {
  position: absolute;
  object-fit: cover;
  z-index: -1;
}
.contenedor_blog .contenedor_blog_imagen img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  opacity: 0.75;
}
.contenedor_blog .contenedor_blog_overlay {
  width: 300px;
  height: 300px;
  position: absolute;
  opacity: 0.5;
  top: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.contenedor_blog:hover .contenedor_blog_overlay {
  opacity: 0;
}
.contenedor_blog .contenedor_blog_texto {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.contenedor_blog .contenedor_blog_texto h3 {
  font-size: 30px;
  text-align: center;
}

.contenedor_blog_descripcion {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}

.entrada_blog .imagen_blog img {
  width: 100%;
  height: 25vh;
  object-fit: cover;
}
.entrada_blog .texto_blog {
  width: 85%;
  margin-left: 20px;
  margin-top: 20px;
}

.iconos-redes_blog {
  margin: 10px;
  margin-top: 35px;
}
.iconos-redes_blog .icono-redes {
  height: 40px;
  width: 40px;
}

.titulo_blog h1 {
  font-size: 2rem;
}
.titulo_blog p {
  font-size: 0.75rem;
  font-style: italic;
  font-family: "Lora";
}

.descripcion_blog {
  font-family: "Lora";
  text-align: left;
  margin-bottom: 2rem;
  margin-top: 1rem;
  color: #1C2C54;
}
.descripcion_blog p a {
  color: #1C2C54;
  font-weight: bold;
}

@media (min-width: 600px) {
  .entrada_blog .texto_blog {
    width: 60%;
  }
}
/*LEADMAGNET*/
/*HERO*/
.hero_leadmagnet {
  position: relative;
  height: 100vh;
  width: 100%;
}
.hero_leadmagnet .video_hero_leadmagnet {
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero_leadmagnet .overlay_hero_leadmagnet {
  position: absolute;
  z-index: 0;
  background-color: #1C2C54;
  height: 100vh;
  width: 100%;
  opacity: 0.7;
}
.hero_leadmagnet .texto_hero_leadmagnet {
  position: absolute;
  z-index: 1;
  color: #F8F9FA;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.hero_leadmagnet .texto_hero_leadmagnet h1 {
  color: #F8F9FA;
  background: none;
}

/*NECESIDAD*/
.necesidad_leadmagnet {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
}
.necesidad_leadmagnet img {
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
}
.necesidad_leadmagnet .sientes_leadmagnet {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.necesidad_leadmagnet .sientes_leadmagnet h2 {
  text-align: center;
  background: none;
  margin: 1rem;
  width: 100%;
}
.necesidad_leadmagnet ul {
  list-style: none;
  padding-left: 1.5em;
}
.necesidad_leadmagnet ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #1C2C54;
  font-size: 1em;
  display: inline-block;
  width: 1em;
}
.necesidad_leadmagnet p {
  background-color: #1C2C54;
  color: #F8F9FA;
  padding: 1rem;
}
.necesidad_leadmagnet p a {
  color: #F8F9FA;
}

/*CTA*/
.cta_leadmagnet_inicio {
  background-color: #1C2C54;
  color: #F8F9FA;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_leadmagnet_inicio a {
  color: #F8F9FA;
}

/*PARTES EBOOK*/
.seccion_partes_leadmagnet h3 {
  text-align: center;
  margin: 1rem;
}
.seccion_partes_leadmagnet p {
  color: #8D8D8D;
}

/*COMPONENTES DEL EBOOK*/
.partes_leadmagnet .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  transition: all 0.25s ease-in;
}
.partes_leadmagnet .card img {
  height: 50px;
  width: 50px;
}
.partes_leadmagnet .card p {
  text-align: center;
  font-size: 0.8rem;
}
.partes_leadmagnet .card:hover {
  transform: translateY(-10px);
}

.scroll-container_testimonios_leadmagnet {
  gap: 3rem;
}
.scroll-container_testimonios_leadmagnet .card-img-top {
  max-width: 200px;
  max-height: 200px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}
.scroll-container_testimonios_leadmagnet .card-img-top img {
  max-width: 200px;
  max-height: 200px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}
.scroll-container_testimonios_leadmagnet .card-testimonios {
  max-width: 300px;
}

/*DISCLAIMER*/
.disclaimer_leadmagnet {
  display: flex;
  flex-direction: column;
  margin: 2rem;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.disclaimer_leadmagnet tex h2 {
  background: none;
}
.disclaimer_leadmagnet ul {
  list-style: none;
  padding-left: 1.5em;
}
.disclaimer_leadmagnet ul li::before {
  content: "\f2d3";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #1C2C54;
  font-size: 1em;
  display: inline-block;
  width: 1em;
}
.disclaimer_leadmagnet p {
  text-align: justify;
  color: #8D8D8D;
}

.contenedor_general_testimonios_leadmagnet h3 {
  color: #F8F9FA;
  padding: 1rem;
}

/*CTA*/
.cta_leadmagnet {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 50vh;
}
.cta_leadmagnet img {
  position: absolute;
  height: 50vh;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}
.cta_leadmagnet .boton {
  position: absolute;
  top: 10%;
  z-index: 1;
}
.cta_leadmagnet div {
  position: absolute;
  bottom: 0;
  padding: 1rem;
}
.cta_leadmagnet div h2 {
  text-align: center;
}

@media (min-width: 600px) {
  .hero_leadmagnet {
    height: 60vh;
  }
  .hero_leadmagnet .video_hero_leadmagnet {
    height: 60vh;
  }
  .hero_leadmagnet .overlay_hero_leadmagnet {
    height: 60vh;
  }
  .hero_leadmagnet .texto_hero_leadmagnet {
    height: 60vh;
  }
  .necesidad_leadmagnet {
    flex-direction: row;
  }
  .necesidad_leadmagnet img {
    width: 50%;
    height: 40vh;
    object-fit: cover;
  }
  .scroll-container_testimonios_leadmagnet {
    justify-content: center;
  }
  .cta_leadmagnet_inicio {
    font-size: 1.8rem;
  }
  .partes_leadmagnet {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .formulario_leadmagnet {
    width: 30%;
  }
  .seccion_partes_leadmagnet {
    width: 55%;
  }
  .cta_leadmagnet {
    width: 50%;
    height: 50vh;
  }
}
/*CONTACTO*/
/*HERO CONTACTO*/
.hero_contacto {
  background-color: #1C2C54;
  text-align: center;
  padding: 1rem;
}
.hero_contacto h1 {
  color: #F8F9FA;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #E3B448;
}
.hero_contacto p {
  color: #F8F9FA;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

.reserva-mapa {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/*CONTENEDOR FORMULARIO*/
.contenedor_formulario {
  width: 90vw;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  background-color: white;
  margin: 1rem;
}
.contenedor_formulario p {
  font-size: 0.8rem;
}
.contenedor_formulario .formulario_reserva .inputs {
  display: flex;
  flex-direction: column;
}
.contenedor_formulario .formulario_reserva .inputs input {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  width: 100%;
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: lighter;
  padding: 0.2rem;
}
.contenedor_formulario .formulario_reserva .inputs input:focus {
  outline: 2px solid #1C2C54;
  outline-offset: 2px;
  border-color: transparent;
}
.contenedor_formulario .formulario_reserva .inputs input::placeholder {
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: lighter;
  padding: 0.5rem;
}
.contenedor_formulario .formulario_reserva label {
  text-align: start;
  font-size: 0.8rem;
  font-family: "Lora";
}
.contenedor_formulario .formulario_reserva label a {
  color: #1C2C54;
}

.flatpickr-day {
  border-radius: 50%;
  font-family: "TT Drugs bold";
  color: #1C2C54;
  transition: all 0.2s;
}

.flatpickr-day:hover {
  background-color: #1C2C54;
  color: #F8F9FA;
}

.flatpickr-day.selected {
  background-color: #F8F9FA;
  color: #1C2C54;
  font-weight: bold;
  border: 1px solid #1C2C54;
}
.flatpickr-day.selected:hover {
  background-color: #1C2C54;
  border: none;
}

.flatpickr-day.today {
  border: 1px solid #E3B448;
  color: #E3B448;
}

.flatpickr-input {
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: lighter;
  padding: 0.5rem;
}

.flatpickr-monthDropdown-months {
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: bold;
  padding: 0.7rem;
  text-align: center;
}

.cur-year {
  font-size: 0.8rem;
  font-family: sans-serif;
  padding: 0.7rem;
  text-align: center;
}

/*MAPA*/
.contenedor_mapa {
  height: 20vh;
  width: 100%;
}
.contenedor_mapa iframe {
  width: 100%;
  filter: grayscale(1);
  box-shadow: 2px 2px 5px gray;
  z-index: 9999;
}

.formulario-mailer {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1C2C54;
}

@media (min-width: 768px) {
  .reserva-mapa {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding: 1rem;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .reserva-mapa .contenedor_formulario {
    width: 50%;
    max-width: 500px;
    max-height: 500px;
  }
  .reserva-mapa .contenedor_mapa {
    height: 100%;
    width: 100vw;
  }
  .reserva-mapa .contenedor_mapa iframe {
    min-height: 100%;
  }
}
.thank-you-page {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
.thank-you-page h1 {
  font-size: 2.5rem;
}
.thank-you-page p {
  font-size: 0.8rem;
}
.thank-you-page p b {
  font-size: 1.2rem;
}
.thank-you-page img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  object-fit: cover;
}

/*LANDING-PAGE*/
/*PRESENTACION*/
.marco_presentacion_landing .texto_presentacion {
  font-size: 1rem;
}

/*SERVICIOS*/
.scroll-container-landing .card_servicios {
  min-width: 300px;
  min-height: 450px;
}

/*COMENTARIOS*/
.scroll-container_testimonios_leadmagnet .card-testimonios {
  min-height: 380px;
}

/*PITCH*/
.contenedor_general_pitch_landing {
  height: 80vh;
}
.contenedor_general_pitch_landing .contenedor_pitch_texto_landing h3 {
  text-align: center;
  color: #F8F9FA;
}
.contenedor_general_pitch_landing .contenedor_pitch_texto_landing p {
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero_landing {
    height: 100vh;
  }
  .hero_landing .video_hero_leadmagnet {
    height: 100vh;
  }
  .hero_landing .overlay_hero_leadmagnet {
    height: 100vh;
  }
  .hero_landing .texto_hero_leadmagnet {
    height: 100vh;
  }
  .marco_presentacion_landing .texto_presentacion {
    font-size: 1rem;
  }
  .scroll-container-landing {
    justify-content: start;
  }
  .contenedor_general_pitch_landing {
    height: 85vh;
  }
  .contenedor_general_pitch_landing .contenedor_pitch_texto_landing h3 {
    font-size: 2.5rem;
  }
  .contenedor_general_pitch_landing .contenedor_pitch_texto_landing p {
    font-size: 1.3rem;
  }
}
/*ENCUENTRANOS*/
.donde_encontrarnos {
  background-color: #1C2C54;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
}
.donde_encontrarnos h2 {
  color: #F8F9FA;
  padding-top: 1rem;
  text-align: center;
  font-size: 2rem;
  text-decoration: solid;
  text-decoration-color: #E3B448;
}
.donde_encontrarnos p {
  color: #F8F9FA;
}
.donde_encontrarnos .contenedor_mapa {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.donde_encontrarnos .contenedor_general_redes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1.5rem;
  gap: 1rem;
}
.donde_encontrarnos .contenedor_general_redes .imagen_redes_landing {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.donde_encontrarnos .contenedor_general_redes .imagen_redes_landing img {
  width: 30px;
  height: 30px;
  filter: grayscale(0);
}
.donde_encontrarnos .contenedor_general_redes .imagen_redes_landing:hover {
  transform: translateY(-10px);
}

/*ONLINE VS PRESENCIAL*/
.titulo-online {
  background-color: #1C2C54;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.titulo-online h2 {
  color: #F8F9FA;
  font-size: 2rem;
  text-align: center;
}

.scroll-container-landing-online {
  height: 80vh;
  background-color: #1C2C54;
  display: flex;
  align-items: end;
}
.scroll-container-landing-online .scroll-container-landing-online-marco img {
  height: 350px;
  width: 350px;
  object-fit: cover;
  object-position: top center;
}
.scroll-container-landing-online .scroll-container-landing-online-marco .texto-online {
  background-color: #F8F9FA;
  color: #1C2C54;
  padding: 1rem;
}
.scroll-container-landing-online .scroll-container-landing-online-marco .texto-online h3 {
  font-family: "TT Drugs bold";
  text-align: center;
}
.scroll-container-landing-online .scroll-container-landing-online-marco .texto-online p {
  font-size: 0.8rem;
  text-align: center;
}
.scroll-container-landing-online .scroll-container-landing-online-marco .texto-online-presencial h3 {
  text-align: center;
  font-family: "TT Drugs bold";
}
.scroll-container-landing-online .scroll-container-landing-online-marco .texto-online-presencial p {
  text-align: center;
  font-size: 0.8rem;
}

/*HORARIOS ENCUENTRANOS*/
.horarios-encuentranos {
  height: 60vh;
  position: relative;
}
.horarios-encuentranos img {
  height: 60vh;
  width: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0.3;
}
.horarios-encuentranos .contenedores-horarios {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.horarios-encuentranos .contenedores-horarios div {
  color: #1C2C54;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0.8rem;
  gap: 0.3rem;
}
.horarios-encuentranos .contenedores-horarios div p {
  font-size: 2.1rem;
  text-align: end;
  font-family: "TT Drugs bold";
}
.horarios-encuentranos .contenedor-horarios-descripcion {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #1C2C54;
}
.horarios-encuentranos .contenedor-horarios-descripcion p {
  font-size: 0.8rem;
  padding: 1rem;
}

@media (min-width: 600px) {
  .scroll-container-landing-online {
    height: 100vh;
    background-color: #1C2C54;
    display: flex;
    align-items: end;
  }
  .scroll-container-landing-online .scroll-container-landing-online-marco img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .horarios-encuentranos {
    height: 40vh;
    position: relative;
  }
  .horarios-encuentranos img {
    height: 40vh;
    width: 100%;
    object-position: center center;
  }
  .horarios-encuentranos .contenedores-horarios div p {
    font-size: 3rem;
  }
  .horarios-encuentranos .contenedor-horarios-descripcion {
    width: 50%;
  }
  .horarios-encuentranos .contenedor-horarios-descripcion p {
    font-size: 1rem;
    padding: 1rem;
  }
}
/*PSICOLOGÍA GENERAL*/
.marco_presentacion_landing_psicogeneral {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_foto img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center right;
}
.marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_texto {
  margin: 1rem;
}
.marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_texto h3 {
  text-align: center;
}
.marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_texto div > p {
  text-align: justify;
  font-size: 0.8rem;
}

@media (min-width: 600px) {
  .marco_presentacion_landing_psicogeneral {
    flex-direction: row;
  }
  .marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_texto div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .marco_presentacion_landing_psicogeneral .marco_presentacion_landing_psicogeneral_texto div p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
