/* ==========================================
   RESET GENERAL Y TIPOGRAFÍAS
   ========================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #faf6f0;
    color: #5D4037;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #5D4037;
    text-transform: none; 
    letter-spacing: 0.5px;
}

/* ==========================================
   BARRA DE NAVEGACIÓN (HEADER)
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%; 
    background-color: #EFECE6; 
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #5D4037;
    font-weight: 300;            
    text-transform: uppercase;    
    letter-spacing: 2px;          
}

.icono {
    color: #5D4037 !important;
    fill: #5D4037 !important;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-right: 10px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #5D4037; 
    margin-left: 25px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.menu a:hover, .menu a.active {
    color: #5D4037;
    opacity: 0.8;
}

/* ==========================================
   HERO INDEX
   ========================================== */
.hero-replica {
    background-color: #EFE6DE !important; 
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #eaddcd; 
}

.contenedor-marca {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-replica h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(45px, 8vw, 85px); 
    font-weight: 300; 
    color: #5D4037; 
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-replica .subtitulo-marca {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 400;
    color: #5D4037;
    text-transform: uppercase;
    letter-spacing: 7px; 
    padding-left: 7px; 
    margin-bottom: 0;
}

.btn-services-gold {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    background-color: #5D4037;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px; 
    border: none;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-services-gold:hover {
    background-color: #5D4037;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   BARRA LATERAL DE CONTACTO (SIDEBAR)
   ========================================== */
.sidebar {
    position: fixed;
    top: 0;
    right: -450px; 
    width: 450px; 
    max-width: 100%; 
    height: 100vh;
    background-color: #faf6f0; 
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
    border-left: 1px solid #eaddcd;
}

.sidebar.active { right: 0; }

.close-btn { 
    position: absolute; top: 25px; right: 25px; background: #ffffff; border: 1px solid #eaddcd;
    border-radius: 50%; width: 35px; height: 35px; font-size: 18px; cursor: pointer; 
    color: #5D4037; display: flex; justify-content: center; align-items: center; transition: color 0.3s ease;
}

.close-btn:hover { color: #5D4037; }

.sidebar-content { margin-top: 30px; }
.sidebar-content h2 { font-size: 32px; margin-bottom: 15px; text-align: center; }

.separador-destello {
    color: #5D4037;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: clip;
}

.contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 35px; }

.contact-icon-circle {
    width: 50px; height: 50px; background-color: #f3ebd9; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 20px;
    color: #5D4037; flex-shrink: 0; line-height: 1;
}

.contact-icon-circle .icono { margin-right: 0 !important; }

.contact-text-box h3 { 
    font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 500;
    color: #5D4037; margin-bottom: 2px; letter-spacing: 1px;
}

.contact-text-box p { 
    font-family: 'Montserrat', sans-serif; font-size: 15px; color: #5D4037; 
    font-weight: 400; line-height: 1.4; 
}

.sidebar-qr-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 25px !important;
    padding-top: 20px !important;
    border-top: 1px dashed #eaddcd !important;
    width: 100% !important;
}

.sidebar-qr {
    width: 140px !important; 
    height: 140px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
}

/* Botón flotante lateral */
.btn-flotante {
    position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px;
    background-color: #5D4037; color: #ffffff; border: none; border-radius: 50%; 
    font-size: 20px; font-family: 'Montserrat', sans-serif; cursor: pointer; z-index: 999;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3); transition: background-color 0.3s, transform 0.2s;
}

/* ==========================================
   SECCIÓN BIENVENIDA Y FOOTER
   ========================================== */
.welcome-section { background-color: #ffffff; padding: clamp(50px, 7vw, 85px) 20px; text-align: center; }
.welcome-section p { color: #5D4037; }

.footer { background-color: #faf6f0; text-align: center; padding: 60px 20px; border-top: 1px solid #eaddcd; }
.footer-title { color: #5D4037; }

/* ==========================================
   SERVICIOS
   ========================================== */
.flecha-abajo { color: #5D4037; }

.enlace-tratamientos { color: #5D4037; }
.enlace-tratamientos:hover { color: #5D4037; text-decoration: underline; }

.card-servicio-vertical .enlace-card { color: #5D4037; }
/* ==========================================
   SERVICIOS: DISEÑO COMPACTO Y CORPORATIVO
   ========================================== */

/* Contenedor del Título y Descripción */
.titulo-servicios-container {
    text-align: center;
    padding: 60px 5% 30px;
}

.titulo-servicios-container h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.titulo-servicios-container p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #5D4037;
    opacity: 0.8;
}

/* Contenedor principal de tarjetas */
.contenedor-servicios-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 5% 80px;
    max-width: 800px;
    margin: 0 auto;
}

/* Tarjetas individuales */
.card-servicio {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.1);
    transition: transform 0.3s ease;
}

.card-servicio:hover {
    transform: translateY(-5px);
}

.img-top {
    height: 250px; /* Altura ideal para ver "rectángulo y medio" */
    width: 100%;
}

.img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pie de tarjeta con enlaces y botón */
.info-bottom {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-izquierda h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

/* Enlace "Ver tratamientos" en marrón */
.btn-ver-tratamientos {
    color: #5D4037;
    text-decoration: underline;
    font-size: 14px;
    display: block;
}

/* Botón "Reservar cita" en marrón sólido */
.btn-reserva {
    background-color: #5D4037;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}

.btn-reserva:hover {
    background-color: #795548;
}
/* ==========================================
   ESTILOS ADICIONALES PARA LÁSER
   ========================================== */

/* Estilo para los precios en tono dorado */
.precio-oro { 
    color: #a17a4c; 
    font-weight: 600; 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.2em; 
    text-align: right; /* Para que queden alineados a la derecha en la tabla */
}

/* Contenedor de la tabla de precios */
.tabla-precios { 
    width: 100%; 
    max-width: 600px; 
    margin: 40px auto; 
    border-collapse: collapse; 
}

.tabla-precios td { 
    padding: 15px; 
    border-bottom: 1px solid #eaddcd; 
    font-family: 'Montserrat', sans-serif; 
    color: #5D4037;
}

/* Separador elegante */
.separador-estrella { 
    text-align: center; 
    color: #a17a4c; 
    margin: 30px 0; 
    font-size: 20px; 
}

/* Bloque destacado para la tecnología */
.destacado-trilaser { 
    background-color: #fcfaf8; 
    padding: 30px; 
    border: 1px solid #eaddcd; 
    border-radius: 10px; 
    margin: 20px 0; 
    text-align: center;
}

.destacado-trilaser h2 {
    margin-bottom: 15px;
}/* Estilos para la tabla de servicios */
.tabla-precios {
    border-collapse: collapse; /* Para que las líneas no se separen */
    width: 100%;
}

.tabla-precios td {
    padding: 15px 0; /* Espacio arriba y abajo en cada fila */
    border-bottom: 1px solid #e0e0e0; /* La línea gris clara debajo de cada texto */
    font-family: 'Montserrat', sans-serif;
    color: #5D4037;
}

.precio-oro {
    font-weight: 600;
    color: #a17a4c !important; /* El color dorado de tus precios */
}

/* Opcional: Quitar la última línea inferior para que no haya una línea extra al final */
.tabla-precios tr:last-child td {
    border-bottom: none;
}/* Forzar reducción de espacio */
.compacto, .compacto section, .compacto main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.tabla-precios td {
    padding: 5px 0 !important; /* Esto hace las filas de la tabla ultra-delgadas */
}/* Forzar color dorado en separadores e iconos */
.separador-destello, .separador-estrella {
    color: #a17a4c !important;
    text-align: center;
    margin: 5px 0 !important;
}

.contact-icon-circle {
    color: #a17a4c !important;
    border: 1px solid #a17a4c !important; /* También le da un borde dorado */
}.separador-linea-suave {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(93, 64, 55, 0.3), transparent);
    margin: 40px auto;
    width: 80%;
}.welcome-section {
    padding: 80px 20px;
    text-align: center;
}

.welcome-container {
    max-width: 750px;
    margin: 0 auto;
}

.welcome-content {
    margin-top: 30px;
}

.welcome-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.welcome-quote {
    margin-top: 35px;
    font-style: italic;
    font-size: 1.1rem;
    color: #a17a4c;
}