/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  background-color: #eaf7e5;
}

.barra-superior {
  width: 100%;
  background-color: #407494b0;
  border-bottom: 1px solid #ddd;
  font-family: 'Brush Script MT', cursive;
  font-size: 22px;
  color: #1d0221;
}

.contenido-barra {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.barra-izquierda span {
  font-weight: 500;
  display: inline-block;
}

.barra-derecha {
  display: flex;
  align-items: center;
  gap: 15px;
}

.barra-derecha a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.barra-derecha img {
  width: 60px;
  height: 60px;
  display: block;
}


/* Responsive */
@media (max-width: 600px) {
  .contenido-barra {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .barra-derecha a {
    margin-left: 10px;
  }
}

/* Menú principal */
.navbar {
  width: 100%;
  background-color: #fceadb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-contenedor {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

.menu {
  display: flex;
}

.menu-lista {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu-lista li a {
  text-decoration: none;
  font-size: 25px;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu-lista li a:hover {
  color: #fd0000; /* color de acento sugerido */
}

/* Botón "Agenda tu hora" */
.btn-agenda {
  padding: 8px 16px;
  background-color: #98dc97; /* Puedes personalizar este color */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-agenda:hover {
  background-color: #ffe100;
  transform: scale(1.02);
}


/* Botón hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .linea {
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .menu.abierto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Sección Bio - Sobre mí */
.seccion-bio {
  width: 100%;
  padding: 80px 20px;
  background-color: #fffdfb;
  font-family: sans-serif;
}

.contenedor-bio {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.bio-texto {
  flex: 1 1 600px;
}

.bio-texto h1 {
  font-size: 36px;
  color: #a45d5d;
  margin-bottom: 12px;
}

.bio-texto h2 {
  font-size: 20px;
  color: #666;
  font-weight: 500;
  margin-bottom: 30px;
}

.bio-texto p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.bio-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.bio-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-bio {
    flex-direction: column;
    gap: 40px;
  }

  .bio-texto h1,
  .bio-texto h2 {
    text-align: center;
  }
}
/* Sección terapias con acordeón */
.seccion-terapias-acordeon {
  width: 100%;
  padding: 80px 20px;
  background-color: #fffefc;
  font-family: sans-serif;
}

.contenedor-acordeon {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* Columna izquierda */
.acordeon-texto {
  flex: 1 1 500px;
}

.acordeon-texto h2 {
  font-size: 30px;
  color: #a45d5d;
  margin-bottom: 20px;
}

.acordeon-texto p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* Columna derecha */
.acordeon-lista {
  flex: 1 1 500px;
}

/* Ítem del acordeón */
.acordeon-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0;
}

.acordeon-titulo {
  width: 100%;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: #a45d5d;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.acordeon-titulo:hover {
  color: #8d4d4d;
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  padding: 0 0;
}

.acordeon-item.activo .acordeon-contenido {
  max-height: 300px;
  padding: 12px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-acordeon {
    flex-direction: column;
    gap: 40px;
  }

  .acordeon-texto h2,
  .acordeon-texto p {
    text-align: center;
  }
}

/* Footer */
.footer {
  width: 100%;
  background-color: #615953;
  padding: 60px 20px 30px;
  font-family: sans-serif;
  color: #ffffff;
}

.footer-contenedor {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #a45d5d;
}

.footer-contacto p {
  margin: 4px 0;
  font-size: 15px;
}

.footer-contacto a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacto a:hover {
  color: #a45d5d;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #080606;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


































































/* Footer */
.footer {
  width: 100%;
  background-color: #615953;
  padding: 60px 20px 30px;
  font-family: sans-serif;
  color: #ffffff;
}

.footer-contenedor {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #a45d5d;
}

.footer-contacto p {
  margin: 4px 0;
  font-size: 15px;
}

.footer-contacto a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacto a:hover {
  color: #a45d5d;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #080606;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

/* Sección presentación */
.seccion-presentacion {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff8f4;
  font-family: sans-serif;
}

.contenedor-presentacion {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.presentacion-texto {
  flex: 1 1 500px;
}

.presentacion-texto h2 {
  font-size: 32px;
  color: #a45d5d;
  margin-bottom: 20px;
}

.presentacion-texto p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.presentacion-imagen {
  flex: 1 1 100px;
  text-align: center;
}

.presentacion-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 102px;
  box-shadow: 0 30px 60px rgba(115, 74, 2, 0.5);
  animation: flotar 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Animación de flotación */
@keyframes flotar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .contenedor-presentacion {
    flex-direction: column;
    gap: 40px;
  }

  .presentacion-texto h2 {
    text-align: center;
  }
}
/* Sección terapias */
.seccion-terapias {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
  font-family: sans-serif;
}

.contenedor-terapias {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.contenedor-terapias h2 {
  font-size: 32px;
  color: #a45d5d;
  margin-bottom: 40px;
}

.grid-terapias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.tarjeta-terapia {
  background-color: #fff9f7;
  padding: 30px 20px;
  border-radius: 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-size: 18px;
  color: #333;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-terapia:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 500px) {
  .tarjeta-terapia {
    font-size: 16px;
    padding: 24px 16px;
  }
}
/* Sección terapias con íconos y descripciones */
.seccion-terapias {
  width: 100%;
  padding: 80px 20px;
  background-color: #fffefc;
  font-family: sans-serif;
}

.contenedor-terapias {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.contenedor-terapias h2 {
  font-size: 34px;
  color: #a45d5d;
  margin-bottom: 50px;
}

.grid-terapias {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← Aquí el cambio clave */
  gap: 40px;
}


.tarjeta-terapia {
  background-color: #fff9f7;
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-terapia:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tarjeta-terapia img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}

.tarjeta-terapia h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #a45d5d;
}

.tarjeta-terapia p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive ajustes pequeños */
@media (max-width: 500px) {
  .tarjeta-terapia {
    padding: 24px 16px;
  }

  .tarjeta-terapia img {
    width: 50px;
    height: 50px;
  }

  .tarjeta-terapia h3 {
    font-size: 17px;
  }

  .tarjeta-terapia p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .grid-terapias {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-terapias {
    grid-template-columns: 1fr;
  }
}

/* Sección Sobre mí */
.seccion-sobre-mi {
  width: 100%;
  padding: 80px 80px;
  background-color: #e9dbcc;
  font-family: sans-serif;
}

.contenedor-sobre-mi {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1 1 600px;
}

.sobre-texto h2 {
  font-size: 32px;
  color: #a45d5d;
  margin-bottom: 10px;
}

.sobre-texto h3 {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-bottom: 30px;
}

.sobre-texto p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.sobre-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.sobre-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-sobre-mi {
    flex-direction: column;
    gap: 40px;
  }

  .sobre-texto h2,
  .sobre-texto h3 {
    text-align: center;
  }
}

/* Footer */
.footer {
  width: 100%;
  background-color: #615953;
  padding: 60px 20px 30px;
  font-family: sans-serif;
  color: #ffffff;
}

.footer-contenedor {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #a45d5d;
}

.footer-contacto p {
  margin: 4px 0;
  font-size: 15px;
}

.footer-contacto a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacto a:hover {
  color: #a45d5d;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #080606;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
