@charset "UTF-8";
@font-face {
  font-family: "Raleway";
  src: url("../ttf/Raleway-VariableFont_wght.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/*menu*/
* {
  text-decoration: none;
  list-style: none;
}

.menu {
  width: 100%;
  height: 40px;
  background: #9861bc;
/*  background: rgb(161,205,229);
  background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  position: fixed;
  top: 0px;
  z-index: 1000;
}

.extremos {
  display: inline-block;
  justify-content: space-between;
}

.contlogoheader {
  max-height: 40px;
  padding-left: 20px;
}

.logo {
  height: 40px;
  padding-left: 20px;
}

.logoServicio {
  max-width: 30%;
  display: flex;
  margin: auto;
}

.minimenu {
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
}

nav li a {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  padding: 8px 20px;
  margin-top: 4px;
  background: #9861bc;
/*  background: rgb(161,205,229);
  background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  color: white;
  font-size: 14px;
  transition: all 300ms ease;
}
nav li a img,
nav li a i {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}

nav li a:hover {
  background: #BC61B3;
  color: #fff;
  transform: scale(1.1);
  border-radius: 5px;
  padding-left: 10px;
  font-size: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

/*SUBMENÚ*/
nav li ul {
  display: none;
  position: absolute;
  width: 190px;
  background: #9861bc;
/*  background: rgb(161,205,229);
  background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  border-radius: 5px;
  top: 40px;
  padding: 5px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 300ms ease;
}

.nav > li > ul:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #9861bc;
  position: absolute;
  top: -12px;
  left: 23px;
}

nav li:hover > ul {
  display: block;
}

nav li ul li {
  position: relative;
  display: block;
}
/*fin MENÚ*/

/*sub-SUBMENÚ*/

nav li ul li ul{
  display: none;
  position: absolute;
  width: 190px;
  background: #9861bc;
/*  background: rgb(161,205,229);
  background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  border-radius: 5px;
  top: 40px;
  padding: 5px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 300ms ease;
}

.nav > li > ul > li > ul:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #9861bc;
  position: absolute;
  top: -12px;
  left: 23px;
}

nav li > ul > li:hover > ul {
  display: block;
}

nav li ul li ul li{
  position: relative;
  display: block;
}

/*fin sub-SUBMENÚ*/

#selected {
  transform: scale(1.1);
  background-color: #BC61B3;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 952px) {
  header {
    height: 30px;
  }
  .contlogoheader {
    height: 30px;
    padding-left: 10px;
  }
  .minimenu {
    float: right;
    padding-top: 5px;
  }
  .logo {
    max-height: 30px;
  }
  nav li a {
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 13px;
  }
  nav li a img,
  nav li a i {
    height: 17px;
    width: 17px;
    margin-right: 5px;
  }
  /*SUBMENÚ*/
  nav li ul {
    width: 170px;
    border-radius: 4px;
    top: 30px;
  
  }
  nav li ul li {
    position: relative;
    display: block;
    margin-left: 10px;
  }
}
@media (max-width: 758px) {
  .extremos {
    float: right;
  }
  .contlogoheader {
    padding-right: 10px;
    padding-top: 5px;
    line-height: 30px;
  }
  .minimenu {
    float: left;
    margin-left: 10px;
    font-size: 25px;
    line-height: 30px;
    display: block;
    padding-top: 5px;
  }
  nav ul {
    position: fixed;
    margin-left: 15px;
    width: auto;
    height: auto;
    background: #9861bc;
    /*    background: rgb(161,205,229);
    background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
    border-radius: 4px;
    top: 30px;
    left: -100%;
    text-align: center;
    transition: all 0.2s;
  }
  nav ul li {
    display: list-item;
  }
  nav ul li a {
    font-size: 14px;
  }
  nav ul li a img,
  nav ul li a i {
    height: 18px;
    width: 18px;
    
  }
  #check:checked ~ ul {
    left: 0%;
  }
  /*SUBMENÚ*/
  nav li ul {
    width: 100%;
    border-radius: 4px;
    left: 95%;
    padding: 4px 0px;
  background: #9861bc;
/*    background: rgb(161,205,229);
    background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  }
  li ul a {
    width: 100%;
    border-radius: 4px;
    padding: 5px;
    text-align: left;
    transition: all 300ms ease;
  }
}
/*fin menu*/



body {
  font-family: "Raleway";
  background-color: #fefae0;
}

.membrete {
  -o-border-image: none;
     border-image: none;
  display: block;
  margin: auto;
  height: 114px;
  width: 375px;
}

#whatsapp {
  z-index: 1000;
  position: fixed;
  bottom: 15px;
  color: green;
  right: 15px;
  max-width: 150px;
  animation: fluctuante 2s ease-in-out infinite;
  transition: all 100ms ease-in-out;
}
#whatsapp img {
  height: 100px;
}


nav ul li a:active,
.button-mas:active,
.callAction:active,
.callAction-slider:active,
.box__footer a:active,
.boton-guardar-editar:active,
.btn:active,
#whatsapp:active {
  -moz-transform: perspective(600px) rotateX(15deg) scale(0.9);
  -ms-transform: perspective(600px) rotateX(15deg) scale(0.9);
  -webkit-transform: perspective(600px) rotateX(15deg) scale(0.9);
  transform: perspective(600px) rotateX(15deg) scale(0.9);
}

.active nav ul li a:active,
.active .button-mas:active,
.active .callAction:active,
.active .callAction-slider:active,
.active .box__footer a:active,
.active .boton-guardar-editar:active,
.active .btn:active,
.active #whatsapp:active {
  -moz-transform: perspective(600px) rotateX(0deg) scale(1);
  -ms-transform: perspective(600px) rotateX(0deg) scale(1);
  -webkit-transform: perspective(600px) rotateX(0deg) scale(1);
  transform: perspective(600px) rotateX(0deg) scale(1);
}

@keyframes fluctuante {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
/* portada slider fade */
.slideshow-container {
  position: relative;
  width: 100%;
  margin: auto;
  top: 40px;
  height: 100vh;
}

.slideshow-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.mySlides {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.75s ease-in;
  object-fit: cover;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  color: rgba(255, 255, 255, 0.368627451);
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  z-index: 10;
}

.next {
  right: 0px;
  border-radius: 3px 3px 3px 3px;
}

.prev {
  left: 0px;
  border-radius: 3px 3px 3px 3px;
}

.prev:hover,
.next:hover {
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.5);
}

.multimedia-slider img, .multimedia-slider video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/*0.multimedia-slider .dot {
  position: absolute;
  top: 42.5%;
  left: 42.5%;
  line-height: normal;
  display: table-caption;
  color: white;
  font-size: xx-large;
  height: auto;
  width: auto;
  background: rgba(2, 123, 209, 0.368627451);
  padding: 20px;
  text-shadow: 0 0 15px white;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.active,
.multimedia-slider .dot:hover {
  background-color: rgba(34, 240, 247, 0.5490196078);
}*/

@media (max-width: 952px) {
  .slideshow-container {
    top: 10px;
  }
  .multimedia-slider .dot {
    top: 50%;
    top: 42.5%;
    left: 40%;
    font-size: x-large;
    padding: 15px;
  }
}
@media (max-width: 758px) {
  .slideshow-container {
    top: 10px;
  }
  .multimedia-slider .dot {
    top: 50%;
    top: 42.5%;
    left: 30%;
    padding: 10px;
  }
}
/* fin media query portada slider fade*/

img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}

video {
  border-radius: 15px;
  max-width: 100%;
  background: white;
}

.imgpost {
  display: block;
  position: relative;
  text-align: center;
  border-radius: 20px;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  margin: auto;
  height: auto;
}

.lista {
    max-width: 50%;
    padding: 10px;
    text-align: left;
    margin: auto;
}

/*
.membrete {
  max-width: 50%;
} */

.seccion-titulo {
  position: relative;
  margin-top: 30px;
  margin-bottom: auto;
  height: auto;
  width: 100%;
  text-align: center;
  background-attachment: fixed;
  border: 10px solid white;
  border-radius: 15px;
}

    #countdown {
    display: block;
    align-items: center;
      justify-content: center;
      font-size: 44px;
      width: 95%;
      margin: 5px auto;
      color: #ffffff;
      background: #9861bc;
      padding: 10px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .btn {
      display: block;
      width: 300px;
      align-items: center;
      text-align: center;
      justify-content: center;
      background-color: #9861bc;
      color: white;
      text-decoration: none;
      margin: 10px auto;
      padding: 15px;
      border-radius: 25px;
      font-size: 2rem;
      transition: background-color 0.3s;
      animation: fluctuante 2s ease-in-out infinite;
      transition: all 100ms ease-in-out;
    }

    .btn:hover {
      background-color: #780bc0;
    }

    @media (max-width: 600px) {
      .btn-ref {
        font-size: 1.5rem;
        padding: 12px;
        margin: 10px auto;
        text-align: center;
        float: none !important;
      }
    }



.supertitulo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3%;
  font-size: 6em;
  width: 100%;
  height: 25vh;
  line-height: 1.2em;
  font-family: "Concert One";
  color: #6A61BC;
  font-weight: 700;
}

.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4em;
  width: 100%;
  height: 100px;
  line-height: 1em;
  font-family: "Concert One";
  color: #9861bc;
  font-weight: 600;
/*  -moz-box-shadow: 0 15px 30px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 255, 0.5);*/
}



nav li a,
nav li ul a,
.slow-outfocus,
.titulo,
.item,
.button-mas,
.cifra,
.callAction,
.callAction-slider,
.fototestigo,
.subcenter,
.redes a i,
.testimonio img,
.video,
.box__footer a {
  -moz-transform: perspective(600px) rotateX(0deg) scale(1);
  -ms-transform: perspective(600px) rotateX(0deg) scale(1);
  -webkit-transform: perspective(600px) rotateX(0deg) scale(1);
  transform: perspective(600px) rotateX(0deg) scale(1);
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* slider */
@keyframes cambio {
  0% {
    margin-left: 0;
  }
  20% {
    margin-left: 0;
  }
  25% {
    margin-left: -100%;
  }
  45% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  70% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  100% {
    margin-left: -300%;
  }
}
/* fin slider */

/* tarifas*/
.cantidad {
  font-weight: 300;
  text-align: center;
  color: #7a7a7a;
}

.tarifas {
  margin: auto;
  height: auto;
  width: 90%;
  background-color: #ffffff;
  border-radius: 15px;
  text-align: center;
}

.item{
  display: inline-block;
  height: auto;
  width: 280px;
  margin: 25px;
  border-radius: 25px;
  border: 5px solid #a1cde5;
  background-color: white;
  padding: 5px;
  text-align: center;
  word-break: break-all
}

.item:hover {
  border: 5px solid #9861bc;
/*  -moz-box-shadow: 0 20px 40px rgba(243, 152, 205, 0.5);
  -webkit-box-shadow: 0 20px 40px rgba(243, 152, 205, 0.5);
  box-shadow: 0 20px 40px rgba(243, 152, 205, 0.5);*/
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.esconder {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1.2s ease-out;
}

.reaparecer {
  transform: scale(1);
  opacity: 1;
}

.button-mas {
  z-index: 1;
  height: 60px;
  width: 150px;
  background-color: #a1cde5;
  padding: 5px;
  border: groove 3px;
  border-radius: 30px;
  cursor: pointer;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
}
.button-mas img {
  height: 45px;
}

.button-mas:hover,
.callAction:hover,
.callAction-slider:hover {
  background-color: #9861bc;
/*  -moz-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  -webkit-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);*/
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.callAction a:hover,
.callAction-slider a:hover {
  color: white;
}

.button-mas:active .callAction:active,
.button-mas:active .callAction-slider:active {
  background-color: #120063;
/*  -moz-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  -webkit-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);*/
}

.active .button-mas:active {
  background-color: #120063;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);*/
}

.cifra {
  font-size: 3.5em;
  text-align: center;
  font-family: "Concert One";
  color: #c894ff;
}

.cifra:hover {
  transform: scale(0.9);
  transition: all 300ms ease-in-out;
}

.callAction {
  height: 40px;
  width: 35%;
  background-color: #a1cde5;
  border-radius: 20px;
  border: groove;
  margin: auto;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
}

.callAction-slider {
  height: 40px;
  width: 100%;
  background-color: #a1cde5;
  border-radius: 20px;
  border: groove;
  margin: auto;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
}

.active .callAction:active,
.active .callAction-slider:active {
  background-color: #120063;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);*/
}

.callAction a,
.callAction-slider a {
  color: white;
}
/* fin tarifas*/


/* slider testimonial*/
.contenedorSlider {
  width: 80%;
  height: auto;
  overflow: hidden;
  margin: auto;
  border-radius: 15px;
}

.sliderTestimonial {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  animation: cambio 16s infinite alternate ease-in-out;
}

.testimonio {
  display: flex;
  background: #ffffff;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  text-align: center;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  color: white;
}
.testimonio a {
  color: white;
}

.testimonio-kids {
  display: flex;
  height: 80vh;
  background: #ffffff;
/*  background: linear-gradient(90deg, rgba(161,205,229,1) 0%, rgba(200,148,255,1) 100%);*/
  background-attachment: fixed;
  background-size: cover;
  border: 5px solid #9861bc;
  border-radius: 25px;
  justify-content: space-evenly;
  flex-shrink: 0;
  text-align: center;
  align-items: center;
  margin: 10%;
}
.testimonio-kids video {
  height: 70vh;
}

.cont-testimonio {
  max-width: 80%;
  height: auto;
  display: flex;
  margin: 0;
  border-radius: 10px;
  align-items: center;
}

.mas {
  display: block;
}
.mas img .emoji {
  width: 70px;
  height: 70px;
}

.fototestigo {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #9861bc;
  padding: 5px;
  margin: 40px;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
}

.fototestigo:hover,
.foto-consultorio:hover {
  border: 10px solid #BC61B3;
/*  -moz-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  -webkit-box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);*/
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.foto-consultorio {
  width: 60%;
  object-fit: cover;
  border-radius: 25px;
  border: 10px solid #9861bc;
  padding: 5px;
  margin: 40px;
  margin-right: 10%;
/*  -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
}

/* fin slider testimonial*/

section {
  padding: 0;
}

.subtitulo {
  font-size: 1em;
  text-align: center;
  font-family: "Concert One";
  color: #ffffff;
}

.subcenter {
  align-items: center;
  font-size: 2.3em;
  text-align: center;
  font-family: "Concert One";
  color: #9861bc;
}

.subcenter:hover {
  color: #6A61BC;
  /* text-shadow: 1px 0px 0px blue, 0px 1px 0px blue, -1px 0px 0px blue, 0px -1px 0px blue; */
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.subleft {
  width: 25vw;
  margin: 2em 2vw;
  font-size: 2em;
  margin: 1em;
  text-align: left;
  font-family: "Concert One";
  color: #9861bc;
}

h1, h2, h3, h4, h5, h6, a {
  color: #9861bc;
}

    
.testimonio p {
  font-size: x-large;
}

.salto-linea {
  height: 10vh;
  width: 100%;
}

iframe {
  position: absolute;
}

.mapa {
  position: relative;
  width: auto;
  padding: 20px;
  height: 70vh;
  border: 3px solid #9861bc;
  border-radius: 25px;
  display: flex;
  margin: 0 auto;
}

.seccion-servicios {
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.seccion-servicios img {
  width: 40%;
  border-radius: 25px;
  border: 10px solid #9861bc;
  padding: 5px;
  margin: 0 30px;
}


/* ini Servicios */


    .servicio {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.2s ease;
        padding: 40px;
        max-width: 1200px;
        margin: auto;
    }

    .servicio:hover {
        transform: translateY(-5px);
    }

    .servicio img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .servicio-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .servicio h2 {
        margin: 0;
        font-size: 1.6rem;
        color: #9861bc;
    }
    
    .servicio h4 {
        margin: 0;
        font-size: 1.3rem;
        color: #9861bc;
    }
    
    .servicio p {
        margin-top: 10px;
        color: #7a7a7a;
        line-height: 1.1;
        font-size: 1.1rem;
    }
    
    /* Botón de expandir solo en móvil */
    .toggle-btn {
        display: none;
        margin-top: auto;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #00796B;
        transition: transform 0.3s;
    }

    .toggle-btn.rotate {
        transform: rotate(45deg);
    }
    
        /* Animación suave para móviles*/
    .servicio p.show {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }

/* fin Servicios */

.img-text {
  position: relative;
  height: auto;
  display: block;
  justify-content: space-around;
  align-items: center;
  margin: auto;
}
.img-text img {
  height: 100vh;
  border-radius: 25px;
  border: 10px solid white;
  align-items: center;
  margin: 0 auto;
}

.perfilpro img {
  position: relative;
  display: block;
  border-radius: 25px;
  border: 10px solid white;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto 0;  /* arriba | horizontal | abajo  */
  height: 100vh;
  width: 90% auto;
  
}

.consultorio {
  position: relative;
  width: 80%;
  height: auto;
  display: block;
  text-align: center;
  align-items: center;
}
.consultorio img {
  width: 80%;
  border-radius: 25px;
  border: 10px solid white;
  margin-top: 20vh;
  margin-bottom: 20vh;
  margin-left: 10vw;
  margin-right: 10vw;
}

.contenedor_p {
  width: 80%;
  margin: auto;
  vertical-align: middle;
}

p {
  color: #7a7a7a;
  font-size: 2em;
  text-align: justify;
}
p-center {
  color: #7a7a7a;
  font-size: 2em;
  text-align: center;
}

p img {
  height: 45px;
  width: 45px;
}

p a {
  text-decoration: underline;
  font-weight: bold;
  color: #7a7a7a;
}

.redes {
  width: 80%;
  margin: auto;
  height: 50px;
  padding: 10px;
  display: inline-block;
  justify-content: space-around;
  text-align: center;
  line-height: 50px;
  align-items: center;
}

.redes i:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 300ms ease;
}

.redes a {
  font-size: 5em;
}

.redes p {
  display: inline-block;
  font-size: 1em;
}

.visorPDF {
  display: flex;
  justify-content: center;
}

@media (max-width: 946px) {

.supertitulo {
    height: 40px;
}

  .titulo{
    font-size: 3.5em;
  }
  .subcenter{
    font-size: 3em;
  }
  .mas a {
    font-weight: 600;
  }
  .testimonio {
    display: block;
  }
  .fototestigo,
  .foto-consultorio {
    margin: 30px 40px;
  }
  .callAction {
    width: 40%;
  }
  .img-text {
    min-height: 600px;
  }
  .img-text img {
    width: 90%;
    border-radius: 25px;
    border: 10px solid white;
    margin-top: 10vh;
    margin-bottom: 10vh;
    margin-left: 4vw;
    margin-right: 4vw;
    height: auto;
  }
  .perfilpro img {
    border-radius: 25px;
    border: 10px solid white;
    margin-top: 10vh;
    margin-bottom: 0;
    width: 80%;
    height: auto;
  }
  .consultorio img {
    width: 70%;
    border-radius: 25px;
    border: 10px solid white;
    margin-top: 10vh;
    margin-bottom: 10vh;
    margin-left: 4vw;
    margin-right: 4vw;
  }
  p {
    font-size: 1.3em;
  }
  p img {
    height: 35px;
    width: 35px;
  }
}

@media (max-width: 758px) {
    
  /* slider testimonial*/
  .contenedorSlider {
    height: auto;
    width: 95%;
  }
  .callAction {
    width: 90%;
  }
  .testimonio p {
    font-size: medium;
  }
  .seccion-titulo {
    border: solid 5px white;
  }
  .supertitulo {
  font-size: 5em;
  height: 50vh;
  padding: 10px;
  line-height: 1.4em;
  margin: 20px;
    }
  .titulo {
    font-size: 3em;
    line-height: 1.7em;
  }
  .subcenter {
    padding: 5%;
    font-size: 3em;
  }
  .fototestigo,
  .foto-consultorio {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    border: 7px solid #9861bc;
    padding: 5px;
    margin: 5px;
    /*    -moz-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 255, 0.5);*/
  }
  .lista {
    max-width: 95%;
  }
  .tarifas {
    width: 95%;
  }
  .item {
    display: inline-block;
    height: auto;
    width: 96%;
    margin: 25px 0;
    border-radius: 25px;
    padding: 5px;
    text-align: center;
  }
  .img-text {
    min-height: 400px;
    margin-bottom: 20px;
  }
  .img-text img {
    margin: 5vh 0;
    width: 100%;
    border-radius: 25px;
    border: 10px solid white;
    padding: 5px;
    margin: 15px 0;
    height: auto;
  }
  .perfilpro img {
    width: 100%;
    max-width: 100%;
    border-radius: 25px;
    border: 10px solid white;
    margin-top: 10vh;
    height: auto;
  }
  .testimonio-kids {
    max-height: 90vh;
    border: 2px solid #a1cde5;
    border-radius: 5px;
    padding: 0px;
    width: 100%;
    margin: 0;
  }
  .testimonio-kids video {
  position: relative;
  align-items: center;
  }
  .cont-testimonio {
    min-width: 100%;
    max-height: 100vh;
    display: block;
    margin: 0;
    border-radius: 10px;
    align-items: center;
  }
  .mapa {
  width: auto;
  height: auto;
  border: 1px solid #9861bc;
    }
  .consultorio {
    min-height: 400px;
    margin-bottom: 20px;
  }
  .consultorio img {
    width: 100%;
    border-radius: 25px;
    border: 10px solid white;
    padding: 5px;
    margin: 15px 0;
  }
  p {
    font-size: 1em;
  }
  p img {
    height: 30px;
    width: 30px;
  }
  #whatsapp {
    bottom: 5px;
    right: 5px;
  }
  #whatsapp img {
    height: 70px;
  }
  
  /* ini Servicios 758px */
  
    /* Comportamiento en móvil */

        .servicio p {
            display: none;
        }
        
        .servicio img {
            object-fit: contain;
        }
        .toggle-btn {
            display: block;
            align-self: flex-end;
        }
    

  /* fin Servicios 758px */
  
} /* fin media 758px */

    /* Burbuja/esfera */
    .bubble {
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent),
                  radial-gradient(circle at 70% 70%, rgba(255,255,255,0.3), transparent),
                  rgba(255,255,255,0.1);
      box-shadow: inset -10px -10px 30px rgba(255,255,255,0.2),
                  inset 10px 10px 30px rgba(0,0,0,0.2),
                  0 8px 25px rgba(0,0,0,0.2);
      backdrop-filter: blur(6px);
    }
    /* Animación hover */
    .bubble:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }
    .transition-all {
      transition: all 0.3s ease-in-out;
    }
    /* fin Burbuja/esfera */
    
    
/*footer*/
footer {
  width: 100%;
  padding: 30px;
  background: #9861bc;
  flex-wrap: wrap;
}

.container__footer {
  max-width: 100px;
  display: flex;
  justify-content: space-around;
  max-width: 100%;
  margin: auto;
  margin-top: 40px;
}

.box__footer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: white;
}

.box__footer h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.box__footer h4:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 300ms ease;
}

.box__footer a {
  margin-top: 10px;
  color: white;
  font-weight: 500;
  font-size: 17px;
}

.box__footer a img {
  width: 17px;
  height: 17px;
}

.logo-foot {
  height: 90px;
  padding-left: 20px;
}

.box__footer a:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 300ms ease;
}

.box__footer a:active {
  font-size: 21px;
}

.active .box__footer a:active {
  font-size: 22px;
}

.box__copyright {
  max-width: 1080px;
  margin: auto;
  text-align: center;
}

.box__copyright p {
  margin-top: 10px;
  color: white;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 952px) {
  footer {
    padding: 20px;
  }
  .container__footer {
    margin-top: 30px;
  }
  .box__footer {
    padding: 15px;
  }
  .box__footer .legend {
    margin-top: 10px;
    font-weight: 300;
    font-size: 12px;
  }
  .box__footer h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  .box__footer a {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    color: white;
  }
}
@media (max-width: 758px) {
  footer {
    padding: 15px 0px;
  }
  .container__footer {
    margin-top: 20px;
    display: block;
  }
  .box__footer {
    margin-top: 20px;
    padding: 10px;
  }
  .box__footer .legend {
    margin-top: 10px;
    font-weight: 300;
    font-size: 11px;
  }
  .box__footer h4 {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .box__footer img {
    height: auto;
  }
  .box__footer a {
    margin-top: 10px;
    margin-left: 15px;
    font-weight: 300;
    font-size: 13px;
    color: white;
  }
}
/*# sourceMappingURL=estilos_din_1.css.map */
