.body {
    margin: 0;
    background-color: #D9E2DA;
}


/*inicio navbar f5f6fa */

.navbar {
  font-family: Georgia, serif;
  font-style: normal;
  background-color: #ffffff;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navbar brand logo */
.navbar-brand img {
  height: 85px;
  transition-duration: 0.7s;
}

.navbar-brand img:hover {
    scale: 1.05;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #2c2c2c;
  font-size: 1.15rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #2e6eb8; /* azul logo */
}

/* Navbar toggler (hamburger icon) */
.navbar-toggler {
  border: none;
}

@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
  }
}




@media (max-width: 768px) {
  .navbar-nav {
    background-color: #ffffff;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
  }

  .navbar-brand img {
    height: 55px;
  }
}
/*fin navbar*/



/*principio booking*/
.fixed-book-button {
  position: fixed;
  top: 5px;
  right:5px;
  background-color: #2a4d8f;
  color: #f5f6fa;
  padding: 0.5% 1%;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  z-index: 1100;
  transition: background-color 0.3s ease;
}

.fixed-book-button:hover {
  background-color: #ff6b5e;
  color: #333333;
}

@media (max-width: 1100px) {
  .fixed-book-button {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 16px 0;
    font-size: 1.1rem;
  }
}

/*fin booking*/

/* principio footer1 */
.footer1 {
    display: block;
    padding: 5%;
    height: auto;
}
.footer1 p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: "Georgia", serif;
    font-style: italic;
    text-align: center;
}

@media (max-width: 1100px) {
    .footer1 {
        padding: 6%;
    }
}

@media (max-width: 992px) {
    .footer1 p{
        padding: 7%;
    }
}

@media (max-width: 450px) {
    .footer1 p{
        padding: 8%;
    }
}






/* fin footer1 */



/* principio container_about1 */
.container_about1 {
    display: flex;
    width: 90%;
    padding: 2%;
    max-width: 1000px;
    margin: 0px auto;
    border-radius: 8px;
    overflow: hidden;
}

.image-half, .text-half {
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
}

.image-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #000;
}

.text-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}

.quote {
    margin: 0 0 15px;
    padding-left: 10px;
    border-left: 4px solid #2a4d8f;
}

.quote p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    margin: 5px 0;
}

.quote .attribution {
    font-style: normal;
    font-size: 1rem;
    color: #555;
    text-align: right;
    font-family: Georgia, serif;
    font-style: italic;
}


.parrafo_about p {
    font-family: Georgia, serif;
    font-style: normal;
    color: #333333;
    line-height: 1.6;
    margin: 10px 0;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .container_about1 {
        flex-direction: column;
    }
    .image-half, .text-half {
        flex: none;
        width: 100%;
    }
    .parrafo_about p {
        font-size: 1rem;
    }
    .quote p {
        font-size: 1rem;
    }
}




/* fin container_about1 */


/* principio container_about2 */
.container_about2 {
    width: 90%;
    display: block;
    padding: 2%;
}

.container_about2 p {
    font-family: Georgia, serif;
    font-style: normal;
    color: #333333;
    line-height: 1.6;
    font-size: 1.15rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .container_about2 p {
        font-size: 1rem;
    }
}

/* fin container_about2 */



/* principio container_about3 */
.container_about3 {
    width: 90%;
    display: block;
    padding: 2%;
}

.container_about3 h3 {
    font-family: Georgia, serif;
    font-style: normal;
}

.container_about3 ul li {
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: left;
    color: #2a4d8f;
}

.container_about3 p {
    padding: 0.5%;
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: justify;
    color: #333333;
}
/* fin container_about3 */







/* principio contact1 */
.contact1 {
    display: block;
    padding: 1.5%;
}

.contact1 p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: left  ;
}
/* fin contact1 */



/* principio contact_img */
.contact_img {
    width: 60%;
    padding: 1.5%;
}
.contact_img img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .contact_img {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .contact_img {
    width: 100%;
    padding: 0%;
    }
}

/* fin contact_img */



/* principio faqs1 */
.faqs1{
    display: block;
    padding: 1.5%;
}
.faqs1 h1{
    text-decoration: underline;
    text-align: center;
    font-family: Georgia, serif;
    font-style: normal;
}
/* fin faqs1 */




/* principio faqs2 */
.faqs2{
    width: 75%;
    display: block;
    padding: 1.5%;
}

.faqs2 ul li{
    color: #2a4d8f;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Georgia, serif;
    font-style: normal;

}

.faqs2 p{
    color: black;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: Georgia, serif;
    font-style: normal;
}

/* fin faqs2 */


/* principio services1 */
.services1 {
    width: 90%;
    display: block;
    padding: 2%;
}

.services1 h2 {
    color: #2e6eb8;
    font-family: Georgia, serif;
    font-style: normal;
}

.services1 p {
    padding: 0.5%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: justify;
    color: #333333;
}

.services1 ul li{
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
}

/* fin services1 */


/* principio psychotherapy1 */
.psychotherapy1 {
    width: 90%;
    display: block;
    padding: 2%;
}

.psychotherapy1 h2 {
    color: #2e6eb8;
    font-family: Georgia, serif;
    font-style: normal;
}

.psychotherapy1 p {
    padding: 0.5%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: justify;
    color: #333333;
}

.psychotherapy1 q {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 600;
    display: block;
    font-size: 1.25rem;
    line-height: 1.6;
}
/* fin psychotherapy1 */



/* principio neuropsychology1 */
.neuropsychology1 {
    width: 90%;
    display: block;
    padding: 2%;
}

.neuropsychology1 h2 {
    color: #2e6eb8;
    font-family: Georgia, serif;
    font-style: normal;
}

.neuropsychology1 p {
    padding: 0.5%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: justify;
    color: #333333;
}

/* fin neuropsychology1 */



/* principio neuropsychology2 */


.neuropsychology2 {
      width: 70%;
      margin: 5px auto;
      padding: 20px;
    }

    .neuropsychology2 h2 {
      text-align: center;
      line-height: 1.6;
      font-family: Georgia, serif;
      font-style: normal;
    }
    
    .neuropsychology2 p {
        text-align: center;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.6;
        font-family: Georgia, serif;
        font-style: normal;
      
    }

    .neuropsychology2 table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    .neuropsychology2 th, td {
      border-top: 2px solid black;
      border-bottom: 2px solid black;
      padding: 10px;
      text-align: center;
      font-size: 1.25rem;
      font-weight: 400;
      line-height: 1.6;
      font-family: Georgia, serif;
      font-style: normal;
    }

@media (max-width: 768px) {
    .neuropsychology2 p {
        font-size: 1rem;
    }
    .neuropsychology2 th, td {
        font-size: 1rem;
    }

}




/* fin neuropsychology2 */



/* principio welcome1 */
.welcome1 {
    width: 100%;
    display: block;
    padding: 4%;
}

.welcome1 h2 {
    color: #333333;
    text-align: center;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    font-size: 2rem;
}

.welcome1 p {
    padding: 0.5%;
    font-size: 2rem;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: center;
    color: #333333;
}

@media (max-width: 1100px) {
    
    .welcome1 h2 {
        font-size: 1.5rem;
    }
    .welcome1 p {
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {
      .welcome1 h2 {
        font-size: 1.25rem;
    }
        .welcome1 p {
        font-size: 1.25rem;
    }
      
    }

/* fin welcome1 */



/* principio welcome2 */
.welcome2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 10px;
      padding: 4%;
    }

    .welcome_option {
      font-family: Georgia, serif;
      font-style: normal;
      padding: 1% 2%;
      background-color: #2E4164;
      color: #D9E2DA;
      text-decoration: none;
      border-radius: 0.5rem;
      font-size: 2rem;
      line-height: 1.6;
      text-align: center;
      min-width: 120px;
      transition: background-color 0.3s;
    }

    .welcome_option:hover {
      background-color: #3ddc97;
      color: #333333;
    }

@media (max-width: 1100px) {
    .welcome_option {
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {
      .welcome_option {
        width: 75%;
        font-size: 1rem;
      }
      .welcome2 {
        padding: 0;
      }
    }
/* fin welcome2 */


/* principio clinicians_1 */
.clinicians_1{
    display: block;
    padding: 1.5%;
    width: 75%;
}

.clinicians_1 p{
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: Georgia, serif;
    font-style: normal;
    text-align: center;
    color: #333333;

}

.clinicians_1 iframe {
    width: 100%;
    height: 3250px;
}

/* fin clinicians_1 */




/* principio btnSubir */

#btnSubir {
  display: none; /* Oculto por defecto */
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #3498db;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}

#btnSubir:hover {
  background-color: #2980b9;
}

/* fin btnSubir */