
/* Importar Raleway desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap');

/* Paleta */
:root {
  --claro: #edebde;
  --verde: #5ea297;
  --violeta-oscuro: #524266;
  --violeta-medio: #6e5f82;
  --rosado: #e1d2de;
  --texto: #333;
  --blanco: #fff;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Raleway', Arial, sans-serif;
}

body, html {
  max-width: 100%;

}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--claro);
  color: var(--texto);
  line-height: 1.6;
}

/* Secciones */
section {
  padding: 60px 20px;
  max-width: 100vw;
  margin: auto;
}

h1, h2, h3 {
  font-weight: bold;

  color: var(--violeta-oscuro);
}

h2{
    font-size: 2.5rem;
}


#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
}

/* Servicios */


#lista-servicios {
  display: grid;
   grid-template-columns: repeat(auto-fit, minmax(500px, 2fr));
  justify-content: center; /* centra el grid horizontalmente */


  
}


.servicio:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--violeta-oscuro);
}

.servicio h3 {
  color: var(--violeta-medio);
}

.servicio strong {
  display: block;
  margin-top: 10px;
  color: var(--verde);
  font-size: 1.1rem;
}

/* Reservar */
#reservar {

  color: var(--violeta-medio);
  text-align: center;
  border-radius: 20px;
}

/* Contacto */
#contacto {
  background: var(--blanco);
  text-align: center;
}

#contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

#contacto input,
#contacto textarea {
  padding: 12px;
  border: 2px solid var(--violeta-medio);
  border-radius: 10px;
  font-size: 1rem;
}

#contacto button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: var(--verde);
  color: var(--blanco);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contacto button:hover {
  background: var(--violeta-oscuro);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--claro);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-left: 0px;
  height: 50px;
}

.logo img {
    margin-top: 120px;
  height: 150px;
  margin-left: 0px;
  transition: height 0.3s ease, margin 0.3s ease;
}

/* Logo pequeño cuando scrolleamos */
.logo.small img {
  height: 90px; /* tamaño reducido */
  margin-top: 60px; /* opcional, ajusta si quieres */
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  font-weight: 0;
  color: var(--violeta-oscuro);
  transition: color 0.3s;
  font-size: 20px;
}

.nav a:hover {
  color: var(--verde);
}


/* Hero */
#hero {

background: radial-gradient(circle, var(--rosado) 0%, var(--claro) 80%, transparent 100%);

  color: var(--blanco);
  text-align: center;
  padding: 80px 30px;
  border-radius: 0 0 40px 40px;
  max-width: 1100px;
height: 90vh;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.hero-img {
  flex: 1 1 300px;
}

.hero-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.hero-text {
  flex: 1 1 600px;
  justify-items: center;
}

.hero-text h1 {
  font-size: 2rem;
  color: var(--violeta-oscuro);
  line-height: 1;

}

.hero-text h3 {
  font-weight: normal;
  margin-bottom: 15px;
  color: var(--violeta-medio);
}

.firma {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--verde);
  font-size: 30px !important;
}

/* Botones Hero */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--violeta-oscuro);
  color: var(--blanco);
}

.btn-primary:hover {
  background: var(--verde);
}

.btn-secondary {
  background: var(--blanco);
  color: var(--violeta-oscuro);
  border: 2px solid var(--violeta-oscuro);
}

.btn-secondary:hover {
  background: var(--verde);
  color: var(--blanco);
  border: 2px solid var(--verde);
}



/* Sobre mí - sección completa */
.sobre-mi-section {
  background: var(--rosado);
  padding: 0px 0px;
}

/* Rectángulo superior con fondo lavanda */
.sobre-mi-hero {
  background: url('assets/lavanda.png') center/cover no-repeat;
  background-attachment: fixed; /* Esto la fija al scroll */

  color: var(--violeta-oscuro);
  text-align: left;
  padding: 20px 20px;
  border-radius: 0px;
  margin: 0px;
  width: 100vw;
  height: 120px;
}

.sobre-mi-hero h2 {
padding-top: 10px;

  line-height: 1.2;

  margin-left: 90px;
}

.sobre-mi-hero p {
  font-size: 1rem;
  margin-left: 117px;
}

/* Parte inferior con foto a la izquierda y texto a la derecha */
.sobre-mi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
  margin: auto;
  max-width: 1100px;
}

.sobre-mi-img {
  flex: 1 1 200px;
}

.sobre-mi-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.sobre-mi-text {
  flex: 2 1 400px;
  color: var(--violeta-oscuro);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 75%;
  padding-left: 10px;
}

.sobre-mi-text p{
    margin-bottom: 25px;
    
}



.servicios-section {
  background: var(--blanco);
  padding: 60px 20px;
    /* Marca de agua */
  background-image: url("assets/logo2.png");
  background-repeat: no-repeat;
  background-position: right 250px;
  background-size: 500px; /* ajustá el tamaño de la marca */
  background-attachment: fixed; /* opcional: hace que quede fijo al scrollear */
}

.separador {
  height: 15px;
  background: var(--claro);
  width: 100%;

}
.separador-2{
  height: 5px;
  background: var(--blanco);
  width: 100%;


}
.separador-3 {
  height: 5px;
  background: var(--claro);
  width: 100%;

}

.servicios-container h2 {

  text-align: center;
  margin-bottom: 10px;
  color: var(--violeta-oscuro);
}

.servicios-container .subtitulo {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--violeta-medio);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Tarjetas */
.servicio {
  background: var(--rosado);
  border: 1px solid var(--violeta-medio);
  border-radius: 15px;
  padding: 20px;
  margin:30px;
  display: flex;
  flex-direction: column;

  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  max-width: 100%;

}

.servicio:hover {
  transform: translateY(-5px);
}

/* Encabezado con logo redondo y título al lado */
.servicio-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.servicio-logo img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
   object-fit: contain;
}

.servicio-titulo {
  font-weight: bold;
  color: var(--violeta-oscuro);
  font-size: 1.2rem;
}

/* Precio */
.servicio-precio {
  font-weight: bold;
  color: var(--verde);
}

/* Duración */
.servicio-duracion {
  font-style: italic;
  color: var(--violeta-medio);
}

/* Descripción */
.servicio-descripcion {
  color: var(--texto);
}

/* Botón reservar */
.servicio button {
  align-self: flex-start;
  margin-top: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  background: var(--verde);
  color: var(--blanco);
  cursor: pointer;

  transition: background 0.3s ease;
}

.servicio button:last-child {
  margin-top: auto;   /* empuja el botón al final */

  border-radius: 10px;
  padding: 12px 25px;
  cursor: pointer;

  align-self: center; /* centra horizontalmente */
}

.servicio button:hover {
  background: var(--violeta-medio);
}



/* RESERVAR - estilos */
.reservar-section {
  width: 100%;
  min-height: 100vh;
  background: url("assets/lavanda.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  position: relative;
}

.reservar-overlay {
  background: rgba(237,235,222,0.92); /* --claro semi */
  padding: 36px;
  border-radius: 14px;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Títulos */
.reservar-overlay h2 {
  color: var(--violeta-oscuro);
  margin: 0 0 6px 0;

}
.reservar-sub {
  color: var(--violeta-medio);
  margin-bottom: 22px;
}

/* Steps */
.steps {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.step {
  flex: 1;
  text-align: center;
  color: var(--violeta-medio);
  font-weight: 700;
  position: relative;
  padding: 8px 6px;
}
.step span { display: block; font-weight: 500; font-size: 0.85rem; }
.step::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--rosado);
}
.step.active {
  color: var(--violeta-oscuro);
}
.step.active::before { background: var(--verde); }

/* Wizard panels */
.wizard { margin-top: 6px; }
.step-panel { display: none; }
.step-panel.is-active { display: block; }

.label { display:block; margin-bottom:8px; font-weight:600; color:var(--violeta-medio); }
select, input[type="text"], input[type="email"], input[type="tel"], input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--violeta-medio);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
}

/* resumen pequeño del servicio elegido */
.servicio-resumen {
  margin: 12px 0 6px;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(226,210,222,0.6), rgba(237,235,222,0.6));
  color: var(--violeta-oscuro);
}

/* Mantener botones en fila para todos los pasos */
.wizard-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

/* 👉 Solo en el paso 4 (agenda) ponerlos en columna */
.step-panel[data-step="4"] .wizard-actions {
  flex-direction: column;
}
.btn {
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-weight: 700;
}
.btn-primary { background: var(--violeta-oscuro); color: var(--blanco); }
.btn-secondary { background: transparent; border: 2px solid var(--violeta-medio); color: var(--violeta-medio); }

/* payment placeholder styling */
.payment-placeholder .monto {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--verde);
  margin-bottom:10px;
}

/* resultado final */
.resultado-reserva {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(94,162,151,0.08);
  color: var(--verde);
  font-weight: 700;
}

/* responsive */
@media (max-width:768px) {
  .steps { gap:8px; font-size: 0.95rem; }
  .wizard-actions { justify-content: center; flex-wrap:wrap; }
}

/* Unifica inputs, selects y textarea */
input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 14px;
  border: 1px solid var(--violeta-medio);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  background: var(--blanco);
  color: var(--violeta-medio);
  outline: none;
  appearance: none; /* elimina estilos nativos */
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover y focus */
input:focus, select:focus, textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 5px rgba(94,162,151,0.5);
}

/* Estilo base */
select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 14px;
  border: 1px solid var(--violeta-medio);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  background: var(--blanco);
  color: var(--texto);
  outline: none;
  appearance: none; /* quita la flecha nativa */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23524266' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover y focus */
select:hover {
  border-color: var(--verde);
}

select:focus {
  border-color: var(--verde);
  box-shadow: 0 0 6px rgba(94,162,151,0.4);
}


select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--violeta-medio);
  border-radius: 10px;
  background: var(--blanco);
  color: var(--violeta-oscuro);
  font-size: 1rem;
  font-family: inherit;
  appearance: none; /* oculta la flechita nativa */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23524266' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  cursor: pointer;
}

select:focus {
  border-color: var(--verde);
  outline: none;
  box-shadow: 0 0 0 3px rgba(94,162,151,0.2);
}


select option {
  padding: 10px;
  font-size: 1rem;
  color: var(--violeta-oscuro);
  background: var(--blanco);
}

select option:hover {
  background: var(--rosado);
}

/* CONTACTO */
.contacto-section {
  background: var(--blanco);
  padding: 60px 20px;
  height: auto;      /* deja crecer */
}

.contacto-section h2 {
  text-align: center;
  color: var(--violeta-oscuro);
  margin-bottom: 8px;

}

.contacto-sub {
  text-align: center;
  color: var(--violeta-medio);
  margin: auto;
  margin-bottom: 40px;
  max-width: 600px;
}

.contacto-container {
  display: flex;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: auto;

}

.contacto-info {
  flex: 1;
  text-align: left; 
  flex-direction: column;
  justify-content: space-around;

}

.contacto-info h3 {
  color: var(--verde);
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--violeta-oscuro);
}

.info-item i {
  font-size: 1.4rem;
  color: var(--verde);
  margin-right: 12px;
}

.info-item strong {
  color: var(--verde);
  display: block;
}

.infoitems{
    margin-bottom: 70px;
}
.redes {
      align-self: flex-end; /* este se va para abajo */
  margin-top: auto;
}

.redes p {
  margin-bottom: 8px;
  color: var(--violeta-medio);
}

.redes a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--violeta-oscuro);
  color: var(--blanco);
  margin-right: 8px;
  font-size: 1rem;
  text-decoration: none;
}

/* FORM */
.contacto-form {
  flex: 1;
  background: var(--rosado);
  padding: 24px;
  border-radius: 12px;
}

.contacto-form h3 {
  margin-bottom: 16px;
  color: var(--violeta-oscuro);
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--violeta-medio);
  border-radius: 8px;
  background: var(--claro);
  font-family: inherit;
}

.contacto-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-enviar {
  width: 100%;
  padding: 12px;
  background: var(--verde);
  color: var(--blanco);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

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

/* Footer */
.footer {
  background-color: var(--violeta-medio);
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;

  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;


}

.footer-col {
  flex: 1 1 250px; /* adaptable según tamaño */
  min-width: 250px;
}

.footer-col:first-child {
  text-align: center; /* centra contenido del logo y texto */
  display: flex;
  flex-direction: column;
  align-items: center;
    margin-right: 90px;
    margin-left: 60px;
  width: 300px;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  text-align: left;
}
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.6;
  font-size: 14px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e0c0ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
}

.contactofooter p{
    margin-bottom: 10px;
}

.contactofooter p:first-child{
    margin-bottom: 0px;
}

.contactofooter p{
    margin-bottom: 10px;
}


/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    min-width: 100%;
  }
}


/*media queries*/

@media (max-width: 768px) {


    
  .header {
    padding: 10px 15px;
    height: 60px;
    padding-left: 0px;
    padding-right: 20px;
  }

  .logo img {
    height: 50px; /* opcionalmente un poco más pequeño en móvil */
    margin-top: 15px;
    margin-left: 0px;
  }
  .logo.small img {
    height: 50px;
  margin-top: 15px;
    margin-left: 0px;
}

  .nav ul {
    gap: 10px;
  }

  .nav a {
    font-size: 14px; /* letras más pequeñas en móvil */
  }


}

@media (max-width: 769px) {
    .reservar-section {
        padding: 20px 16px;
        min-height: 80vh;
    }
  section{
   scroll-margin-top: 80px; /* desktop */
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
    h2{
        font-size: 1.5rem;
    }
      #hero .hero-container {
    display: flex;
    flex-direction: row; /* antes era column */
    align-items: center;
    gap: 15px;
  }

.hero-img img{
    width: 40%;
}
  #hero {
    flex-direction: column;
    padding: 20px 20px 20px 20px;
    height: auto;
    text-align: center;
  }

  .hero-text {
 flex: 1 1 50%;
    text-align: center; /* si quieres que siga alineado a la izquierda */

  }



  .hero-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    max-width: 300px;
  }

  .hero-buttons {
    justify-content: center;
    width: 300px;
  }
.firma{
    margin-bottom: 10px;
}
.btn{
    width: 250px;
    height: 50px;
}
#hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    width: 100%;
}
}


/* sobre mi media querie */
@media (max-width: 768px) {
  .sobre-mi-content {
            flex-direction: column;
        justify-content: center;
        text-align: left;
        padding: 20px;
        gap: 20px;
  }
  


  .sobre-mi-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .sobre-mi-hero {
    height: 90px;
  }

  .sobre-mi-hero h2 {
    font-size: 1.5rem;
    padding-top: 0px;
    margin-left: 5px;
  }
.sobre-mi-hero p {
    font-size: 1rem;
    margin-left: 20px;
}
.sobre-mi-img img {
    width: 50%;
    
}

.sobre-mi-img {
        flex: 1 1 100px;
        text-align: center; 
}




.sobre-mi-text p {
    font-size: 1rem;
}
/*servicios*/


.servicios-container h2 {
    padding: 0px 15px;
}

.servicios-section {
    padding: 30px 20px;
        background-position: center 200px;
            background-size: 250px;
}

.servicios-container .subtitulo {
    font-size: 0.8rem;
}

#lista-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
}

}

@media (max-width: 768px) {
    .contacto-section {
        padding: 20px 30px;
         min-height: 100vh; /* ocupa al menos una pantalla, pero crece si hace falta */
        height: auto;      /* deja crecer */
    }
    #contacto{
        height: auto;
    }
    .contacto-container {
        height: 100%;
    }
}


@media (max-width: 768px) {

    .footer {
  padding: 30px 20px 20px 20px; 
}

  .footer-container {
    flex-direction: column; /* apila las columnas verticalmente */
    align-items: center;
    text-align: center;
    gap: 0px; /* espacio entre secciones */
    padding: 0 15px; /* evita que se salga del borde */
    height: auto;
  }

  .footer-col {
    min-width: 100%; /* ocupa todo el ancho de pantalla */
    margin: 0 auto;
    height: 50px;
    flex: 1 1 200px;
  }

  .footer-col:first-child {
    margin: 0 auto 20px auto; /* margen inferior para separar */
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 10px;
    padding-top: 10px;
    margin-top: 0px;
  }
}

/* Forzar violeta por si el CSS de Google lo sobreescribe */
#agenda-embed .VfPpkd-LgbsSe {
  background-color: #6A00FF !important;   /* tu violeta */
  border-color: #6A00FF !important;
  color: #fff !important;
}
#agenda-embed .VfPpkd-LgbsSe:hover {
  filter: brightness(0.92);
}

/* Asegura que #agenda-embed no ocupe espacio cuando está oculto */
#agenda-embed[style*="display:none"] {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cuando sí se muestra */
#agenda-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
/* Unificar estilo del botón embebido de Google Calendar */
.gc-scheduling-button {
  background-color: var(--violeta-oscuro) !important;
  color: var(--blanco) !important;
  border-radius: 8px !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  transition: background-color 0.3s ease;
}

.gc-scheduling-button:hover {
  background-color: var(--violeta-medio) !important;
}

/* 🔮 Centrar completamente los bloques de luna */
.luna-item {
  display: flex;
  flex-direction: column;
  align-items: center;        /* centra horizontalmente */
  justify-content: center;    /* centra verticalmente */
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Centra los textos y el botón dentro del bloque */
.luna-item .btn {
  display: inline-block;
  margin: 12px auto 4px auto;
}

/* 💫 Centrar botón “Reservar otro servicio” */
#reservar-otro {
  display: block;
  margin: 30px auto;
  text-align: center;
}
/* Estilo "default" tipo Mercado Pago */
.btn-mp{
  background:#009EE3;        /* azul MP */
  color:#fff;
  border:0;
  border-radius:10px;
  padding:12px 20px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:filter .2s ease, transform .02s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.btn-mp:hover{ filter:brightness(.95); }
.btn-mp:active{ transform:translateY(1px); }
.btn-mp:disabled{ opacity:.6; cursor:not-allowed; }

/* En móvil que se vea bien grande */
@media (max-width:768px){
  .btn-mp{ width:100%; }
}
