@import url('https://fonts.cdnfonts.com/css/champagne-limousines');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat';
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #66d8d6;
  color: white;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  text-align: center;
  border-radius: 12px;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.logo1 {
  height: 80px;
  width: auto;
  margin-right: -10px;
}

.logo2 {
  height: 30px;
  width: auto;
}

.logo3 {
  height: 93px;
  width: 160px;
}

.line1 {
  width: 220px;
  margin-top: 5px;
}

.telimg {
  height: 16px;
  width: 16px;
}

.mailimg {
  height: 16px;
  width: 16px;
}

.logo-container {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  /* uno a la izquierda, otro a la derecha */
  align-items: flex-start;
  padding: 2em 5%;
  gap: 40px;
  flex-wrap: wrap;
  /* para que se adapte en pantallas pequeñas */
}

/* Estilo para logo-footer */
.logo-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 250px;
}

/* Estilo para logo-footer2 */
.logo-footer2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  margin-top: 130px;
}

/* Estilo para logo-footer3 */
.logo-footer3 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  margin-top: 130px;
}

/* Estilo para logo-footer4 */
.logo-footer4 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  margin-top: 130px;
}

.telefono {
  display: flex;
  align-items: left;
  gap: 8px;
  margin-top: 30px;
}

.mail {
  display: flex;
  align-items: left;
  gap: 8px;
  margin-top: 20px;
}

.contact {
  display: flex;
  align-items: left;
  margin-top: 30px;
}

main {
  flex: 1;
  padding-left: 2em;
  padding-right: 2em;
}

footer {
  background-color: rgb(163, 191, 192, 0.1);
  color: black;
  text-align: center;
  padding: 1em 0;
}

footer a {
  color: #66ccff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
  }

  footer a {
    display: block;
    margin: 5px 0;
  }

  .logo-container {
    right: 0;
  }

  .btn-header {
    margin-top: 1em;
  }

  .section {
    flex-direction: column;
  }

  .right {
    padding: 20px;
  }
}

.botones-container {
  display: flex;
  justify-content: space-between;
  /* reparte uniformemente */
  flex: 1;
  max-width: 80%;
  /* ocupar todo el ancho posible */
  margin-left: 10px;
  /* separación del logo */
}

/* Estilo base */
.btn-header {
  position: relative;
  /* necesario para ::after */
  color: #000000;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
  font-family: 'Montserrat';
  font-size: 18px;
}

/* Línea animada */
.btn-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover: texto blanco + línea visible */
.btn-header:hover {
  color: white;
}

.btn-header:hover::after {
  transform: scaleX(1);
}

/* Cuando esté activo (página actual): texto blanco y línea siempre visible */
.btn-header.active {
  color: white;
}

.btn-header.active::after {
  transform: scaleX(1);
}


.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  background-color: #40c7c7;  /* Color de fondo del botón */
  color: white;               /* Color del texto */
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

/* Efecto hover */
.btn-contact:hover {
  background-color: #2aa7a7;
  transform: scale(1.05);
}

/* Scroll suave al hacer clic */
html {
  scroll-behavior: smooth;
}

.subscribe-box {
  display: flex;
  width: 300px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f9f9f9;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.input-area {
  flex: 1;
  border: none;
  padding: 0 10px;
  font-size: 16px;
  outline: none;
  height: 30px;
  width: 180px;
}

.subscribe-button {
  background-color: #40c7c7; 
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Montserrat';
  width: 100px;
  height: 40px;
  border-color: #40c7c7; 
}

.subscribe-button:hover {
  background-color: #4dd6d6;
}

.map-container {
  width: 300px;
  height: 200px;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 40px;
  height: 40px;
}

/* Diseño main */

* {
  box-sizing: border-box;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.left,
.right,
.leftb {
  flex: 1;
  min-width: 300px;
}

.left img,
.leftb img,
.right img.logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.left img {
  width: 1215px;
  height: 502px;
}

.leftb img {
  width: 1215px;
  height: 502px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.right {
  padding: 5px 5px;
  text-align: right;
}

.right img.logo {
  width: 500px;
  height: 279px;
}

.right p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  align-items: right;
  justify-content: right;
}

.right strong {
  font-weight: bold;
}

.section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(102, 216, 214, 0.2);
  flex-direction: column;
  height: auto;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section2 {
    height: auto;
    /* elimina altura fija */
    padding: 20px 10px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .cuadros,
  .cuadros2 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .cuadro1,
  .cuadro2 {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  .img1,
  .img2 {
    margin: 0 auto;
    display: block;
  }

  .arrow1,
  .arrow2 {
    margin: 20px auto 0;
    display: block;
  }

  .text2 {
    padding: 0 20px;
  }

  .text2 p.textt2,
  .text2 p.textt3 {
    margin-left: 0;
    margin-right: 0;
  }

  .fila-experiencia {
    justify-content: center;
    margin-left: 0;
    flex-direction: row;
  }
}


.text1 {
  text-align: center;
  margin-top: 40px;
}

.text1 div {
  margin-bottom: 5px;
}

.text1 p {
  font-size: 24px;
  margin: 0;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #67D3D3;
}

.text1 p.title1 {
  font-size: 48px;
  margin: 0;
  font-family: 'Champagne & Limousines';
  font-weight: lighter;
  color: rgba(83, 157, 163, 1);
}

.cuadros {
  display: flex;
  justify-content: space-between;
  /* uno a la izquierda, otro a la derecha */
  align-items: flex-start;
  padding: 2em 5%;
  gap: 60px;
  margin-top: 20px;
}

.cuadros2 {
  display: flex;
  justify-content: space-between;
  /* uno a la izquierda, otro a la derecha */
  align-items: flex-start;
  padding: 2em 5%;
  gap: 60px;
  margin-top: 20px;
}

.cuadro1 {
  height: 400px;
  width: 460px;
  border-radius: 12px;
  background-color: #FFFFFF;
}

.cuadro2 {
  height: 400px;
  width: 460px;
  border-radius: 12px;
  background-color: #66D8D6;
}

.img1 {
  width: 120px;
  height: 120px;
  margin-left: 40px;
  margin-top: 15px;
}

.titlec1 {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 25px;
  color: #67D3D3;
  margin-top: 10px;
  margin-left: 40px;
}

.textc1 {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
  margin-left: 40px;
  margin-right: 40px;
  text-align: left;
}

.arrow1 {
  width: 24px;
  margin-left: 390px;
  margin-top: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.arrow1:hover {
  transform: translateX(5px) scale(1.1);
  opacity: 0.8;
}

.img2 {
  width: 120px;
  height: 120px;
  margin-left: 40px;
  margin-top: 15px;
}

.titlec2 {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 25px;
  color: #FFFFFF;
  margin-top: 10px;
  margin-left: 40px;
}

.textc2 {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
  margin-left: 40px;
  margin-right: 40px;
  text-align: left;
}

.arrow2 {
  width: 24px;
  margin-left: 390px;
  margin-top: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.arrow2:hover {
  transform: translateX(5px) scale(1.1);
  opacity: 0.8;
}

.text2 {
  text-align: center;
  margin-top: 40px;
}

.text2 p.title2 {
  font-size: 20px;
  margin: 0;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #539DA3;
}

.text2 p.textt2 {
  font-size: 14px;
  margin: 0;
  font-family: 'Montserrat';
  font-weight: 400;
  text-align: center;
  margin-left: 60px;
  margin-right: 60px;
  margin-top: 10px;
}

.text2 p.textt3 {
  font-size: 14px;
  margin: 0;
  font-family: 'Montserrat';
  font-weight: 500;
  margin-left: 60px;
  margin-top: 20px;
}

.fila-experiencia {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  /* espacio entre el texto y la flecha */
  margin-left: 750px;
}

.arrow3 {
  width: 24px;
  /* ajusta según tu imagen */
  transition: transform 0.3s ease;
  cursor: pointer;
}

.arrow3:hover {
  transform: translateX(5px);
  /* efecto de movimiento */
}

.section3 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  height: auto;
  flex-direction: column;
  margin-top: auto;
}

.titles3 {
  font-size: 45px;
  margin: 0;
  font-family: 'Champagne & Limousines';
  font-weight: lighter;
  color: #539DA3;
}

.texts3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 1000px;
  margin: 30px auto;
  text-align: justify;
}

@media (max-width: 768px) {
  .texts3 {
    font-size: 15px;
    padding: 20px;
    margin: 20px 10px;
    text-align: left;
    line-height: 1.6;
  }

  .texts3 p {
    margin-bottom: 16px;
  }
}

.section5 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.left2 {
  flex-shrink: 0;
  width: 794px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right3 {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

/* Texto */
.titlesec3 {
  font-size: 20px;
  font-weight: 600;
  color: #67D3D3;
  font-family: 'Montserrat', sans-serif;
}

.titlesec31 {
  font-size: 20px;
  font-weight: 500;
  color: #67D3D3;
  font-family: 'Montserrat', sans-serif;
}

.textsec3 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.list1 {
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
}

list11{
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
  font-family: 'Montserrat';
}

/* Imágenes */
.img1s3 {
  width: auto;
  height: auto;
  display: block;
}

.img2s3 {
  width: 626px;
  height: 414px;
  display: block;
}



@media (min-width: 1025px) and (max-width: 1366px) {
  .section5 {
    max-width: 1240px;
    gap: 30px;
    margin: 0 auto;
  }

  .left2 {
    width: 994px;
  }

  .right3 {
    max-width: calc(100% - 994px - 30px);
  }

  .img1s3 {
    width: 994px;
    height: 664px;
  }

  .img2s3 {
    width: 626px;
    height: 414px;
  }
}



/* Estilos Page Sobre Nosotros*/

.containerN1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .containerN1 {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .imageN1 {
    width: 100%;
    text-align: center;
  }

  .imageN1 img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
  }

  .contentN1 {
    width: 100%;
    padding: 20px;
    height: auto;
    text-align: justify;
    box-shadow: none;
    border-radius: 0;
    margin: 0 auto;
  }

  .contentN1 .logo4 {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
  }

  .titleN1 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #5E9130;
  }

  .textN1 {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
    padding: 0 10px;
    text-align: justify;
  }

  .textN1 strong {
    font-weight: 600;
  }
}


.imageN1 {
  flex: 1 1 300px;
  max-width: 100%;
}

.imageN1 .imgN1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contentN1 {
  flex: 1 1 400px;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(151, 208, 115, 0.25);
  align-items: center;
  width: auto;
  height: auto;
}

.titleN1 {
  font-family: 'Champagne & Limousines';
  font-size: 36px;
  font-weight: 440;
  color: #5E9130;
}

.logoN1 {
  font-size: 28px;
  font-family: 'Georgia', serif;
  color: #66b386;
  margin-bottom: 10px;
}


@media (max-width: 900px) {
  .containerN1 {
    flex-direction: column;
  }

  .imageN1,
  .contentN1 {
    flex: 1 1 100%;
  }

  .contentN1 {
    padding: 20px;
  }
}

.logo4 {
  height: 180px;
  width: 180px;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  padding: 40px 20px;
  background-color: rgba(159, 208, 115, 0.15);
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

/* Imagen de fondo para toda la sección */
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  left: 0;
  background-image: url('VectorM.png');
  /* Ruta de tu imagen */
  background-size: 540px;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* Ambas tarjetas comparten estilo base */
.card1,
.card2 {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  position: relative;
  z-index: 1;
}

/* Asegura que el contenido esté por encima en card2 */
.card2>* {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {

  .info-section::before,
  .card2::before {
    background-size: 300px;
    background-position: center;
  }
}


.titleno {
  color: rgba(94, 145, 48, 1);
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'Champagne & Limousines';
  font-size: 400;
  text-align: left;
}

.card1 ul,
.card2 ul {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
}

.textno {
  color: #000000;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
}

.card1 ul,
.card2 ul {
  padding-left: 20px;
}

.card1 ul li,
.card2 ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
  }

  .card1,
  .card2 {
    max-width: 90%;
  }
}

.mvl {
  background-color: #fff;
  padding: 30px;
  margin-top: 20px;
  margin-left: 0;
  text-align: justify;
  align-items: start;
  flex: 1 1 300px;
  max-width: 450px;
}

.mvr {
  background-color: #fff;
  padding: 30px;
  margin-top: 20px;
  text-align: justify;
  align-items: end;
  flex: 1 1 300px;
  max-width: 450px;
}

.mv {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: center;
  padding: 20px;
}

@media (max-width: 480px) {
  .mv {
    gap: 20px;
    padding: 10px;
  }

  .mvl,
  .mvr {
    max-width: 100%;
    padding: 20px;
  }
}


/* Estilos pagina Tratamientos */

.tratamientos {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

.tratamiento {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.tratamiento .imagent1 img {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tratamiento .imagent2 img {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tratamiento .textot1 {
  max-width: 620px;
  background-color: #e6f7f6;
  /* Azul muy claro */
  border-radius: 15px;
  padding: 25px;
  font-family: 'Montserrat';
}

.tratamiento .textot2 {
  max-width: 620px;
  background-color: #e6f7f6;
  /* Azul muy claro */
  border-radius: 15px;
  padding: 25px;
  font-family: 'Montserrat';
}

.titletr {
  font-family: 'Champagne & Limousines';
  font-size: 36px;
  font-weight: 400;
  color: rgba(83, 157, 163, 1);
  margin-left: 60px;
  margin-right: 60px;
}

.texttr {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-left: 60px;
  margin-right: 60px;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
  .tratamiento {
    flex-direction: column !important;
    /* fuerza columna en todos */
    gap: 20px;
    margin-bottom: 30px;
  }

  .tratamiento .imagent1 img,
  .tratamiento .imagent2 img,
  .tratamiento .textot1,
  .tratamiento .textot2 {
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .titletr,
  .texttr {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .titletr {
    font-size: 28px;
  }

  .texttr {
    font-size: 13px;
  }
}

.texttr2 {
  padding: 40px 20px;
}

.texttr2l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.texttr-texto {
  flex: 1 1 400px;
  max-width: 600px;
}

.texttrp {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
}

.texttrp1 {
  font-family: 'Montserrat';
  font-size: 18px;
  font-weight: 400;
}

.texttr-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 500px;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .texttr2l {
    flex-direction: column;
    text-align: center;
  }

  .texttrp {
    text-align: left;
  }
}



@media (max-width: 768px) {
  .left img {
    width: 100%;
    height: auto;
  }

  .right img.logo {
    width: 100%;
    height: auto;
  }

  .right p {
    text-align: center;
  }

  .section {
    padding: 20px 10px;
  }

  .cuadros,
  .cuadros2 {
    flex-direction: column;
    align-items: center;
  }

  .cuadro1,
  .cuadro2 {
    width: 90%;
    height: auto;
    padding-bottom: 20px;
  }

  .arrow1,
  .arrow2 {
    margin-left: auto;
    margin-right: 20px;
    margin-top: 20px;
  }

  .fila-experiencia {
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
  }

  .textt3 {
    margin-left: 0;
  }

  .section5 {
    flex-direction: column;
    padding: 20px;
  }

  .left2 {
    width: 100%;
    align-items: center;
  }

  .img1s3,
  .img2s3 {
    width: 100%;
    height: auto;
  }

  .right3 {
    padding: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .logo-footer,
  .logo-footer2,
  .logo-footer3,
  .logo-footer4 {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .subscribe-box {
    width: 90%;
  }
}



@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 1em;
    margin: 10px;
    text-align: center;
  }

  .logo-container {
    justify-content: center;
    margin-bottom: 1em;
  }

  .logo1 {
    height: 60px;
  }

  .logo2 {
    height: 24px;
  }

  .botones-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-header {
    margin: 0;
    font-size: 20px;
  }
}


/*Estilos Que buscas*/

.titleQB1 {
  font-family: 'Champagne & Limousines';
  font-size: 36px;
  font-weight: 440;
  color: rgba(159, 208, 115, 1);
}

.textQB1 {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  padding: 0 10px;
  text-align: justify;
}

.info-section2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: rgba(159, 208, 115, 0.15);
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  text-align: center;
}

.titleQB2 {
  font-family: 'Champagne & Limousines';
  font-weight: 400;
  font-size: 48px;
  color: rgba(94, 145, 48, 1);
  margin-bottom: 5px;
}

.line2 {
  width: 220px;
  margin: 0 auto 15px;
  display: block;
}

.textQB2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
  padding: 20px;
  text-align: left;
  box-sizing: border-box;
  margin-top: 30px;
}

.itemQB {
  display: flex;
  flex-direction: column;
}

.titleQB3 {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: rgba(94, 145, 48, 1);
}

.textQB3 {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: #000;
}

/* Responsive: en pantallas pequeñas pasa a 1 columna */
@media (max-width: 800px) {
  .textQB2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .textQB3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .imgGroup7 {
    width: 90%;
    padding: 10px 0;
  }
}

.imgGroup7 {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Estilos Contactanos */

/* SECCIÓN CONTACTO */
.contact-section {
  padding: 40px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
  margin: auto;
  gap: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.form-contact {
  flex: 1 1 50%;
  background-color: #fff;
  padding: 25px;
  border-right: 1px solid #e0e0e0;
}

.form-contact h2 {
  color: #5acfd0;
  font-weight: 300;
  margin-bottom: 15px;
}

.form-contact input,
.form-contact textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.form-row input {
  flex: 1;
}

.mensaje-contacto {
  flex: 1 1 50%;
  background-color: #d5f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-size: 20px;
  color: #5acfd0;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    border-radius: 10px;
  }

  .form-contact {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .form-row {
    flex-direction: column;
  }
}

.btn-enviar {
  margin-top: 15px;
  background-color: #5acfd0;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #4bb3b4;
}


.info-contacto-visitanos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  justify-content: center;
}

.box {
  flex: 1 1 400px;
  background-color: #5acfd0;
  padding: 25px;
  border-radius: 10px;
  color: white;
}

.box h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 24px;
}

.form-suscribir {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.form-suscribir input {
  flex: 1;
  padding: 6px;
  border-radius: 4px;
  border: none;
}

.form-suscribir button {
  background-color: white;
  color: #5acfd0;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-suscribir button:hover {
  background-color: #e0f7f7;
}

/* === CONTÁCTANOS Y VISÍTANOS === */
.info-contacto-visitanos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  justify-content: center;
}

.box {
  flex: 1 1 400px;
  max-width: 520px;
  background-color: #5acfd0;
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
}



.box h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 24px;
}

.form-suscribir {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.form-suscribir input {
  flex: 1;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
}

.form-suscribir button {
  background-color: white;
  color: #5acfd0;
  border: none;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-suscribir button:hover {
  background-color: #e0f7f7;
}

hr {
  border: none;
  border-top: 1px solid #b2ebf2;
  margin: 20px 0;
}

.redes-sociales {
  display: flex;
  gap: 15px;
}

.redes-sociales img {
  width: 24px;
  height: 24px;
}

.mapa-box iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: none;
  margin: 10px 0;
}

.direccion {
  font-size: 14px;
  color: white;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .info-contacto-visitanos {
    flex-direction: column;
    gap: 20px;
  }

  .form-suscribir {
    flex-direction: column;
  }

  .form-suscribir input,
  .form-suscribir button {
    width: 100%;
  }

  .redes-sociales {
    justify-content: center;
  }
}

.subscribe-box {
  display: flex;
  width: 100%;
  max-width: 400px;
  /* límite para que no sea muy grande */
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f9f9f9;
  margin: 15px auto;
}

.input-area {
  flex: 1;
  border: none;
  padding: 0 12px;
  font-size: 15px;
  font-family: 'Montserrat';
  outline: none;
}

.subscribe-button {
  background-color: #60e0e0;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Montserrat';
  font-weight: 500;
  padding: 0 20px;
  transition: background-color 0.3s ease;

}

.subscribe-button:hover {
  background-color: #4dd6d6;
}

/* Responsivo */
@media (max-width: 600px) {
  .subscribe-box {
    flex-direction: column;
    height: auto;
    max-width: 90%;
  }

  .input-area {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }

  .subscribe-button {
    width: 100%;
    padding: 12px 0;
    border-radius: 0 0 10px 10px;
  }
}

.sitemap {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;           /* Ancho opcional */
  margin: 0 auto;
}

/* Contenedor de los botones en columna */
.sitemap-buttons {
  display: flex;
  flex-direction: column;     /* Columna vertical */
  gap: 15px;                  /* Espaciado entre botones */
  align-items: center;        /* Centrado horizontal */
}

/* Botones */
.sitemap-buttons a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #40c7c7;  /* Color de fondo del botón */
  color: white;               /* Color del texto */
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Efecto hover */
.sitemap-buttons a:hover {
  background-color: #2aa7a7;
  transform: scale(1.05);
}

/* Scroll suave al hacer clic */
html {
  scroll-behavior: smooth;
}
