body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.perfil {
  display: flex;
  flex-direction: row; 
  align-items: center;
  text-align: left;
  margin-top: 20px;
  background: white; /* Cambié a blanco para que resalte */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 500px;
  gap: 20px;
  /* IMPORTANTE: Eliminamos max-height para que no se superponga */
  height: auto; 
}

.perfil img {
  width: 120px; /* Un poco más pequeña para que quepa mejor */
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0; /* Evita que la foto se aplaste */
}


.perfil h2 {
   font-size: 35px;
}



.logo {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.logo img {
  max-width: 250px;
}

.logo h1 {
  margin: 0;
}

.servicios {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas en móvil queda genial */
  gap: 15px;
  margin-top: 30px; /* Esto les da aire respecto al perfil */
  width: 100%;
}

.card h3 {
  position: absolute;
  /* En lugar de bottom: 130px (que es muy alto), usamos un valor bajo */
  bottom: 15px; 
  left: 10px;
  right: 10px; /* Para que se centre y tenga margen */
  margin: 0;
  color: white;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}

.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}


.boton {
  margin: 30px;
  cursor: none;
  
}

.btn-wsp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.btn-wsp:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  transition: 0.3s;
}


.wsp-icon {
  font-size: 20px;
}

.h1 {
 font-size: 160px;
}

.boton-volver-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  background: #5a7293;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 18px;
  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.boton-volver-float:hover {
  background: #1a1474;
  transform: translateY(-50%) scale(1.1);
}

button {
  background: green;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.insta-icon {
  font-size: 22px;
}

.boton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.insta-link:hover {
  transform: scale(1.05);
  transition: 0.3s;
}


.reiki-detalle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.reiki-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.reiki-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.reiki-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}



.aromas-detalle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.aromas-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.aromas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.aromas-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}




.sanacion-detalle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.sanacion-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.sanacion-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.sanacion-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}


.masajes-detalle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.masajes-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.masajes-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.masajes-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.separador {
  margin: 20px 0;
  border: none;
  height: 5px;
  background-color: #ccc;
}

.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}


/* TEXTO ENCIMA */
.banner-texto {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: grey;
  text-align: center;
  z-index: 2;
}

.banner-texto h1 {
  font-size: 30px;
  margin: 0;
}

.banner-texto p {
  font-size: 16px;
}

.promo-boton-container {
  text-align: center;
  margin: 25px 0;
}


/* HEADER */
.promo-header {
  text-align: center;
  margin-bottom: 25px;
}

.promo-header-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.promo-boton {
  background: #5a7293;
  color: #fff;
  padding: 18px 25px;
  font-size: 1.2rem;
  border: none;
  border-radius: 12px;
  width: 50%;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.promo-boton:hover {
  background: #1a1474;
  transform: scale(1.05);
  transition: 0.3s;
}

.promo-title {
  font-size: 2rem;
  color: #111;
  letter-spacing: 1px;
}

.promo-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.promo-box h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #222;
}

.promo-box p {
  margin: 4px 0;
  color: #555;
}

.promo-detalle {
  font-size: 0.9rem;
  color: #777;
}

.volver-min {
  margin-top: 20px;
  background: none;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
}

.volver-min:hover {
  background: #333;
  color: #fff;
}

.promo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promo-content h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #222;
}

.promo-content p {
  margin: 4px 0;
  color: #555;
}

.promo-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.espacio {
  height: 5px;
}
  
@media (max-width: 768px) {

  .perfil {
    flex-direction: column; /* Foto arriba, texto abajo */
    text-align: center;
    padding: 20px 10px;
  }

  .perfil img {
    width: 140px;
    height: 140px;
  }

  .perfil h2 {
    font-size: 24px;
    margin: 10px 0;
  }

  .perfil p {
    margin: 5px 0;
    font-size: 15px;
  }

  .container {
    padding: 10px;
  }

  h1 {
    font-size: 26px;
  }


img {
  max-width: 100%;
  height: auto;
}

}