:root {
    --verde-profundo: #2D463E;   
    --arena-tostada: #EBDCCB;    
    --terracota: #D67D5C;        
    --crema-suave: #FDFBF8;      
    --blanco-roto: #F4EAE0;
}

* { box-sizing: border-box; scroll-behavior:smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--crema-suave);
    background-image: url('img/natural-paper.png');
    color: var(--verde-profundo);
    margin: 0;
    line-height: 1.6;
}

/* Header & Nav */
.header-luxury {
    background-color: var(--verde-profundo);
    padding: 40px 20px;
    color: var(--arena-tostada);
    text-align: center;
}

.header-luxury h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin: 0;
    letter-spacing: 2px;
}

.main-logo {
    width: 120px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); /* Le da profundidad */
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05); /* Efecto sutil al pasar el ratón */
}

/* Contenedor para alinear logo y título */
.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Lo centra en la pantalla */
    gap: 20px;               /* Espacio entre el logo y el texto */
}

.nav-logo {
    height: 120px;            /* Ajusta la altura a tu gusto */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.tagline {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--terracota);
    margin-top: 10px;
}

nav ul {
    margin-top: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--arena-tostada);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-cta {
    background: var(--terracota);
    padding: 8px 18px;
    border-radius: 4px;
    color: white !important;
}

/* Secciones Base */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-split {
    max-width: 100%; 
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--blanco-roto) 0%, var(--blanco-roto) 20%, transparent 100%);
}

.hero-text { max-width: 800px; margin: 0 auto; }

.superior {
    color: var(--terracota);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 20px 0; }
.highlight { color: var(--terracota); font-style: italic; }

.hero-actions { margin-top: 40px; }
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-tel { margin-left: 20px; color: var(--verde-profundo); font-weight: 700; }

/* Horarios */
.seccion-horarios {
    max-width: 100%; 
    background: radial-gradient(ellipse at center, var(--blanco-roto) 0%, var(--blanco-roto) 20%, transparent 100%);
}

/* Unifica la tipografía de los días en ambas tablas */
.seccion-horarios th {
    
    color: var(--verde-profundo);
    font-size: 1.1rem; /* Ajuste opcional para mejor legibilidad */
}



.seccion-horarios strong {
    color: var(--terracota);
}
.badge-online {
    background-color: rgba(214,125,92,0.1);
    border: 1px solid var(--terracota);
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
}
.hora-especial{
    background-color: rgba(214,125,92,0.1);
    border: 1px solid var(--terracota);
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
}

.franja-text{
    color:var(--terracota);
}




.btn-consultar:hover {
    color: var(--verde-profundo);
    border-color: var(--verde-profundo);
    padding-left: 5px;
}


/* Ajuste de hover para las filas */
.tabla-especial tbody tr:hover {
    background-color: rgba(235, 220, 203, 0.2); /* Un toque de arena tostada */
    transition: background 0.3s ease;
}

.tabla-contenedor {
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(45, 70, 62, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.tabla-contenedor table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

th, td {
    padding: 20px;
    border-bottom: 1px solid var(--arena-tostada);
    text-align: left;
}

.tabla-especial th, 
.tabla-especial td {
    border-right: 1px solid var(--arena-tostada);
}

.tabla-especial th:last-child, 
.tabla-especial td:last-child {
    border-right: none;
}

.header-franja {
    background-color: var(--blanco-roto);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 700;
    text-align: center !important;
}


.celda-horas { 
    font-family: 'Montserrat', sans-serif; /* Asegura consistencia */
    font-size: 0.9rem; 
    color: #555; 
    text-align: center; 
}



.col-tarde { background-color: rgba(244, 234, 224, 0.3); }

/* Bloque destacado para Embarazadas */
.aviso-embarazadas {
    max-width: 850px;
    margin: 40px auto;
    background-color: var(--blanco-roto);
    border: 1px solid var(--arena-tostada);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.icono-aviso {
    font-size: 2.5rem;
    color: var(--terracota);
    font-family: 'Playfair Display', serif;
}

.contenido-aviso h4 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: var(--verde-profundo);
}

.contenido-aviso p {
    margin: 0 0 15px 0;
    font-size: 1rem;
}

.btn-consultar {
    display: inline-block;
    color: var(--terracota);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--terracota);
    transition: all 0.3s ease;
}

/* Mapa */
.seccion-mapa {
    max-width: 100%;
    background: radial-gradient(ellipse at center, var(--blanco-roto) 0%, var(--blanco-roto) 20%, transparent 100%);
}

.mapa-wrapper {
    max-width: 850px;
    margin: 0 auto;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 70, 62, 0.08);
}

.mapa-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Formulario */
.form-container {
    max-width: 100%;
    background-color: var(--verde-profundo);
    color: white;
}

.form-sedna {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
}

/* --- Estilos Galería --- */
.seccion-galeria {
    max-width: 100%;
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, var(--crema-suave) 0%, var(--blanco-roto) 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Auto-ajustable */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.foto-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(45, 70, 62, 0.1);
    transition: transform 0.4s ease;
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la foto para que llene el cuadro sin deformarse */
    transition: transform 0.6s ease;
}

/* Efecto al pasar el ratón */
.foto-item:hover {
    transform: translateY(-5px);
}

.foto-item:hover img {
    transform: scale(1.1); /* Zoom suave al pasar el ratón */
}


.field label { display: block; margin-bottom: 8px; color: var(--arena-tostada); }
.field input { width: 100%; padding: 12px; margin-bottom: 20px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.2); }

input[type="submit"] {
    width: 100%;
    background: var(--terracota);
    color: white;
    padding: 15px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}


/* WhatsApp & Footer */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

footer { text-align: center; padding: 40px; font-size: 0.8rem; color: var(--verde-profundo); }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .header-luxury h1 { font-size: 1.8rem; }
    .hero-text h2 { font-size: 2.2rem; }
    .btn-tel { display: block; margin: 20px 0 0 0; }
    .tabla-contenedor { overflow-x: auto; }
    .celda-horas { min-width: 160px; }
    .mapa-wrapper { height: 300px; }
    .logo-title-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .nav-logo {
        height: 80px;
    }
    .aviso-embarazadas {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .foto-item {
        height: 250px;
    }
}
