@font-face {
  font-family: 'Calibri';
  src: url('../assets/fonts/Calibri-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url('../assets/fonts/Calibri-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url('../assets/fonts/Calibri-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Calibri';
  src: url('../assets/fonts/Calibri-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: light;
}


/* Estilo general para la scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px; 
}

/* Estilo del track de la scrollbar */
::-webkit-scrollbar-track {
  background: #F8F8F8; 
  border-radius: 10px;
}

/* Estilo del pulgar de la scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #019A85; 
  border-radius: 10px;
  border: 3px solid #F8F8F8;
}

/* Estilo del pulgar cuando se interactúa con él */
::-webkit-scrollbar-thumb:hover {
  background-color: #01745F; 
}


body {
  font-family: 'Calibri', sans-serif;
  overflow-x: hidden;
  background-color: #F8F8F8;
  padding: 0;
  margin:0;
}


.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-nav .nav-link {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  color: #019A85;
  position: relative;
  padding-bottom: 5px;
  font-size: 20px;

}
.navbar-nav .nav-item {
  margin: 0 25px; 
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #019A85;
  transition: width 0.3s;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #019A85;
}

.navbar-brand {
  margin-left: 80px; 
  margin-right: -20px;
}

.navbar-toggler {
  border: none; 
  background-color: transparent; 
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(1, 154, 133, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 768px){
  .navbar-brand {
    margin: 0;
  }
}

/* BANNER SECTION */

.banner {
  min-height: 80vh; 
  overflow-x: hidden;
  padding: 20px 0;
}

.text-container h1 {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #3A3A3A; 
  margin-top: 50px;
}

.text-container h1 .highlight {
  color: #019A85; 
}

.text-container {
  text-align: left;
}

.img-container {
  padding-right: 0; 
  text-align: right; 
}


.desktop-img {
  width: 110%; 
  height: auto; 
 

  transform: translateX(15%); 
}
.mobile-img{
 display: none;
}


[data-aos="zoom-in"] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 2s;
  transition-timing-function: ease-in-out;
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(100%);
  transition-property: opacity, transform;
  transition-duration: 2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .banner {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    min-height: 40vh;
  }
  .first-banner {
    margin: 0; 
    padding: 0; 
    width: 100%; 
    max-width: 100%; 
  }

  .text-container {
      margin-top: 0px;
  }
  .text-image {
    flex-direction: column; 
    align-items: center;
  }

  .col-md-6 {
    width: 100%; 
  }
  .text-container h1 {
      font-size: 40px;
      text-align: center; 
      margin-top: 0;
      padding: 12px;
  }
  
  .img-container {
      text-align: center; 
      margin-top: 20px; 
      margin: 0 auto;
      padding: 0 ;
  }

  .desktop-img {
     display: none;
  
  }
  .mobile-img {
    width: 100%; 
    height: auto;
    object-fit: cover; 
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .banner {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
  }
  .first-banner {
    margin: 0; 
    padding: 0; 
    width: 100%; 
    max-width: 100%; 
  }


  .text-image {
    flex-direction: column;
    align-items: center;
    justify-content: center;
   margin: 0 ;
   width: 100%;

  }


  .text-container {
    text-align: center;
    margin-bottom: 20px;
    width: 100%; 
    padding: 0 10px;
  }

  .text-container h1 {
    font-size: 65px;
    line-height: 1;
  }

  .img-container {
  
    width: 100%;
   
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    width: 100%;
    height: auto;
    display: block;
  }
}


@media (min-width: 1024px) and (max-width: 1379px){
   .navbar .nav-link {
    font-size: 16px;
    line-height: 1;
    padding-bottom: 0;
  }
  .navbar-brand{
    margin-left: 40px;
  }
  
  .banner {
    padding: 20px 0 ;
    
    min-height: 40vh;
  }
  
 
  .desktop-img {
    width: 110%; 
    height: auto; 
   
    object-fit: cover; 
    transform: translateX(20%); 
  }
  
    .text-container h1 {
      margin-top: 80px;
      font-size:70px;
      line-height: 1;

  }

  .img-container-quienes{
    margin-left: -35px;
  }

}
@media (min-width: 1500px) {
  .banner {
    min-height: 80vh;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .text-container h1 {
    font-size: 80px;
    margin-top: 60px;
    line-height: 1; 
  }

  .text-container {
    text-align: left;
    max-width: 60%; 
  }

  .img-container {
    text-align: right;
    max-width: 55%; /* Ajusta el ancho del contenedor de la imagen */
  }

  .desktop-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateX(25%); 
}
}
@media (min-width: 1980px) {
  .banner {
    min-height: 80vh;
    padding: 30px 0;
    display: flex;

  
  }

  .text-container {

   margin-top: 40px;
  width: 100%;
  margin-left: -150px;
  }

  .text-container h1 {
    font-size: 90px; 
    margin-top: 40px;
    line-height: 1;
  }

  .img-container {
    width: 100%; 
    text-align: right;
  }

  .desktop-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateX(55%); 
  }
  .img-container-quienes{
    margin-left: -250px;
  }
  .text-container-quienes{
    margin-left: 250px;
  }
}


/* SEGUNDA SECCION */

.quienes-somos-section {
  background: linear-gradient(to bottom, #019A85 -250%, #F8F8F8 50%);
  padding-top: 20px ;
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
}

.img-container-quienes {
  padding-left: 0; 
  text-align: left; 
  margin-top: -20px;

}

.img-fluid-quienes {
  width: 100%; 
  height: auto; 
  object-fit: cover; 
  transform: translateX(-15%); 
  padding-left: 0;
  margin-left: 0;

}
.text-container-quienes {
  color: #333;
}

.text-container-quienes h2 {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.text-container-quienes p {
  font-family: 'Calibri', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: #3A3A3A;
  text-align: left;
}

.bold-p{
  color: #019A85;
  font-weight: bold;
}

.arrow-down-quienes {
  cursor: pointer;
  text-align: center;
  margin: 20px 0;
}

.arrow-rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
.arrow-down-quienes img {
  width: 24px; 
  height: auto;
}

.highlight-box-quienes {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px; 
}

.highlight-box-quienes p {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #019A85;
  margin: 0;
}


.additional-content {
  display: none; 
 margin-top: 0;

 
}
.additional-content h3 {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #3A3A3A;
  margin-bottom: 10px;
}
.podras{
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #019A85;
  margin-bottom: 10px;



}
.additional-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.additional-content ul li {
  font-family: 'Calibri', sans-serif;
  font-size: 18px;
  color: #3A3A3A;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .additional-content ul {
    list-style-type: none;
    padding-left: 0;
  }

  .additional-content ul li {
    padding-left: 0; /* Elimina cualquier sangría adicional */
  }
}

@media (max-width: 768px) {
  .quienes-somos-section {
      padding: 30px 0;
      overflow-x: hidden; 
  }

  .text-container-quienes h2 {
      font-size: 2rem;
      text-align: center;
  }

  .text-container-quienes p {
      font-size: 0.9rem;
      padding: 10px;
  }

  .img-container-quienes {
      text-align: center;
      margin-bottom: 20px;
  }

  .img-fluid-quienes {
      width: 100%;
      border-radius: 0; 
      transform: none;
      display: none;
  }

  .highlight-box-quienes p {
      font-size: 0.9rem;
   
  }


  [data-aos="fade-right"] {
      transform: none !important; 
  }

  [data-aos="fade-left"] {
      transform: none !important; 
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .quienes-somos-section {
    padding: 30px 0;
    text-align: center; /* Centra todo el contenido */
  }

  .quienes-tablet {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .img-fluid-quienes {
    display: none;
  }

  .img-container-quienes {
    display: none;
  }

  .text-container-quienes {
    text-align: center; /* Centra el texto */
    width: 100%;
  }

  .text-container-quienes p {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Ajusta el padding según sea necesario */
  }
 
}




/*BANNER MIDLE */


.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .banner-image {
      object-fit: contain; 
      object-position: center;
  }
}


/* SERVICES SECTION */


.services-section {
  padding: 50px 0;
  text-align: center;
}

.services-title {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3A3A3A;
  margin-bottom: 10px;
}

.services-subtitle {
  font-family: 'Calibri', sans-serif;
  font-size: 1.7rem;
  color: #3A3A3A;
  margin-bottom: 20px;
  font-weight: bold;
}


.services-subtitle-two {
  line-height: 1.3;
  font-family: 'Calibri', sans-serif;
  font-size: 18px;
  color: #3A3A3A;
  margin-bottom: 40px;
}


.service-item {
  background-color: #019A85;
  color: #fff;
  padding: 10px;
  border-radius: 31px;
  font-family: 'Calibri', sans-serif;
  font-size: 16px !important;
  font-weight: bold;
  text-align: center;
  line-height: 1;
 
  max-width: 320px; 
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.service-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
 
}


.service-item {
  font-size: calc(1rem + (0.5vw - 1vh)); 
  word-wrap: break-word;
}

.hidden {
  display: none;
}

/* Estilos generales del nuevo acordeón */

.accordion-two {
  margin-top: 20px;
}


.accordion-item-two {

  border: 1px solid #019A85;
  border-radius: 8px;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
  
}

.accordion-header-two .pill-title-two {
  background-color: transparent;
  color: #3A3A3A;
  font-weight: bold;
  padding:10px;
 
  padding-top: 20px;
  font-size: 18px;
  display: flex;
  justify-content: space-between; 
  align-items: center;

  width: 100%;
  border: none;

}


.accordion-collapse-two {
  border-top: 1px solid #019A85;
}

.accordion-body-two {
  padding: 15px;

 
}

.accordion-body-two ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.accordion-body-two ul li {
  padding: 10px 2px;
  font-size: 18px;
  color: #FFF; 
  font-weight: 400;
  text-align: center;
  background-color: #019A85; 
  margin-bottom: 10px;
  border-radius: 10px;

}


.accordion-button-two:not(.collapsed) {
  background-color: transparent;
  color: #019A85;
  font-weight: bold;
}
.accordion-button-two.pill-title-two::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #019A85;
  border-bottom: 2px solid #019A85;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button-two.pill-title-two:not(.collapsed)::after {
  transform: rotate(-135deg);
}

@media (max-width: 768px) {

  .accordion-item-two {
    width: 90%; 
    margin-bottom: 15px;
  }

  .accordion-header-two .pill-title-two {
    font-size: 14px; 
    padding: 10px; 
    margin-top: 10px;
   
  }

  .accordion-body-two ul li {
    font-size: 16px; 
    padding: 8px 5px;
    line-height: 1.2;
  }

  .accordion-button-two.pill-title-two::after {
    width: 8px;
    height: 8px;
    margin-top: -5px;
   
  }

.services-subtitle {
  font-family: 'Calibri', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #3A3A3A;
  margin-bottom: 20px;
  font-weight: bold;
}

.services-subtitle-two {
  line-height: 1.3;
  font-family: 'Calibri', sans-serif;
  font-size: 14px;
  color: #3A3A3A;
  margin-bottom: 40px;
}

}

/* Adaptaciones para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .accordion-item-two {
    width: 80%; /* Ajusta el ancho en tablets */
    margin-bottom: 12px;
  }

  .accordion-header-two .pill-title-two {
    font-size: 17px; /* Ajusta el tamaño de fuente */
    padding: 10px 15px;
  }

  .accordion-body-two ul li {
    font-size: 17px;
    padding: 10px 8px;
  }

  .accordion-button-two.pill-title-two::after {
    width: 9px;
    height: 9px;
  }
}









/* INSTALACIONES SECTION */


.instalaciones-section {
  padding: 50px 0;
  background: linear-gradient(to bottom, #019A85 -250%, #F8F8F8 50%);

  text-align: center;
}
.instalaciones-title {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3A3A3A;
  margin-bottom: 30px;
}

.instalacion-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 469px;
  background-color: #fff;
  border-radius: 38px;
  padding: 25px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.instalacion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.instalacion-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
 
  margin: auto;
  object-fit: cover;
}

.instalacion-info {

  text-align: left;
}

.instalacion-info h3 {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #019A85;
  margin-bottom: 10px;
}

.instalacion-info p {
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
  color: #3A3A3A;
  margin-bottom: 0;
  line-height: 1;
}


@media (max-width: 1025px){
.instalacion-card{
  width: 300px !important;
  height: 40px;  
}

}




@media (max-width: 1300px) {
  .instalacion-card {
    width: 300px;
    height: 40px; 
    padding: 20px;
  }

  .instalacion-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .instalacion-info h3 {
    font-size: 1.15rem; 
  }

  .instalacion-info p {
    font-size: 0.9rem;
  }
}
@media (max-width: 1400px){
  .instalacion-card {
    width: 350px;
    height: 400px; 
    padding: 25px;
  }

  .instalacion-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .instalacion-info h3 {
    font-size: 1.15rem;
    margin-top: 5px; 
  }

  .instalacion-info p {
    font-size: 0.9rem;
  } 
}




@media (max-width: 950px) {


.instalaciones-swiper {
padding: 50px 0;
background: linear-gradient(to bottom, #019A85 -250%, #F8F8F8 50%); 
text-align: center;



}
.instalacion-card{
  margin-bottom: 20px;
}
.swiper {
  width: 100%;
  height: auto;
  
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
 
}


}

@media (max-width: 950px){
.instalaciones-section {
  display: none;
}
}
@media (min-width: 950px)
{
  .instalaciones-swiper{
    display: none;
  }


 
}

/* ACCORDION SECTION */


.cuerpo-medico-section {
  padding: 50px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 70%;
  margin: 60px auto;

}

.cuerpo-medico-section h2 {
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3A3A3A;
  text-align: center;
  margin-bottom: 30px;
}

.accordion-button {
  background-color: transparent;
  border: none;
  color: #3A3A3A;
  font-family: 'Calibri', sans-serif;
  font-weight: 400;
  font-size: 16px;


}


.accordion-button::after {
  content: ''; /* Asegura que el contenido sea vacío */
  background-image: url('data:image/svg+xml,%3Csvg xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27 width%3D%2716%27 height%3D%2716%27 fill%3D%27%23019A85%27 class%3D%27bi bi-chevron-down%27 viewBox%3D%270 0 16 16%27%3E%3Cpath fill-rule%3D%27evenodd%27 d%3D%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27%2F%3E%3C%2Fsvg%3E'); /* Cambia la URL al SVG en línea con el color deseado */
  background-repeat: no-repeat;
  background-size: 1em 1em;
  transform: scale(1.2);
}

.accordion-button.collapsed::after {
  content: ''; /* Asegura que el contenido sea vacío */
  background-image: url('data:image/svg+xml,%3Csvg xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27 width%3D%2716%27 height%3D%2716%27 fill%3D%27%23019A85%27 class%3D%27bi bi-chevron-down%27 viewBox%3D%270 0 16 16%27%3E%3Cpath fill-rule%3D%27evenodd%27 d%3D%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27%2F%3E%3C%2Fsvg%3E'); /* Cambia la URL al SVG en línea con el color deseado */
  background-repeat: no-repeat;
  background-size: 1em 1em;
  transform: scale(1.2); 
}


.accordion-button:focus {
  box-shadow: none;
}

.accordion-button.collapsed {
  color: #3A3A3A;

}

.accordion-button:not(.collapsed) {
  color: #019A85;
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
}

.accordion-item {
  border: none;
  position: relative;
  padding: 0;
  margin: 0;

 
}

.accordion-item::before,
.accordion-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #019A85;
  
}




.accordion-item::before {
  top: 0;
}

.accordion-item::after {
  bottom: 10px;
  position: absolute;
  z-index: 1;

}

.accordion-body {
  padding: 15px 30px;
  max-height: 200px; 
  overflow-y: auto;
  z-index: 2;
  background-color: #fff; 
 position: relative;
  
}

.medico-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.medico-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.medico-item img {
  width: 70px; 
  height: 70px;
  margin-bottom: 10px;
}

.medico-item p {
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  color: #3A3A3A;
}

@media (max-width: 768px) {
  .cuerpo-medico-section {
    padding: 20px;
    max-width: 90%;
  }

  .accordion-button {
    font-size: 14px;
  }

  .accordion-button:not(.collapsed) {
    font-size: 16px;
  }

  .accordion-body {
    padding: 10px 15px;
    max-height: 200px;
  }

  .medico-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .medico-item img {
    width: 50px;
    height: 50px;
  }

  .medico-item p {
    font-size: 14px;
  }
}
/* FORM SECTION */


.contact-section {
  background-image: url('../assets/img/fondo-form.svg'); 
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  position: relative;
}

.container-form{
  max-width: 800px;
  margin: 0 auto;

  padding: 30px;

 
}

.contact-section h2 {
  text-align: center;
  font-family: 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3A3A3A;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Calibri', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3A3A3A;
}

.form-group input, .form-group textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #019A85; 
  box-shadow: 0 0 5px rgba(1, 154, 133, 0.5); 
}
textarea {
  resize: none;
  height: 150px;
}

.btn-submit {
  align-self: flex-end;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  background-color: #019A85;
  color: #fff;
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #F8F8F8;
  color: #01745F;
  border: solid 1px #01745F;
}

/* Estilos Responsive */
@media (max-width: 768px) {
  .btn-submit {
    align-self: center;
  }
}


/* FOOTER SECTION */

.footer-section {
  background-color: #019A85;
  color: #fff;
  padding: 30px 0;
  position: relative;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

.footer-section  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section .row > div {
  flex: 1 1 20%; 
  min-width: 200px; 
  text-align: left;
  margin-bottom: 20px;
}
.footer-logo img {
  max-width: 200px;
}

.footer-logo,
.footer-links,
.footer-social,
.footer-location {
  margin: 0 10px;
}

.footer-links h4,
.footer-social h4,
.footer-location h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li:hover {

font-weight: bold;

}

.footer-social li:hover {

  font-weight: bold;
  
  }
  
.footer-links ul li,
.footer-social ul li {
  margin-bottom: 5px;
}

.footer-links ul li a,
.footer-social ul li a {
  color: #fff;
  text-decoration: none;
}



.footer-social ul li img {
  width: 20px;
  margin-right: 10px;
}

.footer-location p {
  display: flex;

  align-items: center;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-location img {
  width: 15px;
   margin-right: 10px;
  flex-shrink: 0;
}

.footer-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: auto;
}
.phone img {
  width: 15px !important; 
  margin-right: 15px !important;
  margin-bottom: 5px !important;

 
}

.phone-what img {
  margin-right: 5px !important;
  margin-bottom: 5px !important;
}

@media (max-width: 768px) {
  .footer-section .container {
    flex-direction: column;
    align-items: center;
    padding: 50px 10px;
  }

  .footer-links,
  .footer-social,
  .footer-location {
    text-align: center;
  }

  .footer-logo img {
    max-width: 200px;
  }
}


.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 15px;
  right: 20px;
  background-color: #60D669;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}




.modal-form{
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  justify-content: center;
  color: #191919;
  align-items: center;
}

.modal-content-form{
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #01775f;
  border-radius: 5px;
  width: 80%;
  max-width: 300px;
  color: #333;
  text-align: center;
  font-family: "Calibri";
}

.enviado{
  color: #333;
  font-weight: 500;
  font-family: 'Calibri';
  font-size: 18px;


}

.button-modal-form {
  background-color: #019A85;
  border-radius: 5px;
  font-size: 16px;
  color: white;
  padding: 5px 40px;
  border: none;

}
.button-modal-form:hover{
 background-color: #01745F;
 
}
.pie {
  display: flex;

  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background-color: #019A85;
  border: none;
  box-shadow: none;
  margin-top: 0;
  padding-top: 0px;
}

.pie .line {
  flex-grow: 1;
  height: 1px;
  background-color: white;
  margin: 0px 5px; 
  margin-bottom: 15px;

 
}

.pie p {
  color: white;
  font-family: 'Calibri', sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
 margin-left: 10px;

 margin-right: 10px;

}

.pie-link {
  color: white;
  text-decoration: none;
  font-weight: bold;

}

.pie-link:hover {
  text-decoration: underline;
}

.directores-section {
  margin-top: 40px;
  text-align: left;
  padding-left: 0px;
}

.directores-section h3 {
  font-family: 'Calibri', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.directores-section ul {
  list-style:none;
  padding: 0;
  margin: 0;
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
  line-height: 1.5;

}

.directores-section ul li {
  padding: 5px 0;
}

.directores-section ul li:last-child {
  border-bottom: none;
}

/* Estilo para el nombre y apellido */
.directores-section .nombre {
  font-weight: bold;
  color: #3A3A3A;
}

/* Estilo para la profesión */
.directores-section .profesion {
  color: #019A85;
  font-weight: 400;
}

@media (max-width: 768px) {
  .directores-section {
    padding: 20px;
  }
  .directores-section h3 {
    text-align: center;
  }

  .directores-section ul {
    flex-direction: column;
    font-size: 14px;
  }

  .directores-section ul li {
    flex: 1 1 100%; 
    text-align: left;
  }
}