/* 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: 20px;
  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: 25px;
  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;
  }
}
