:root {
    --primary-bg: #fff; 
    --accent-gold: #c5a065; 
    --accent-rose: #fcf6f6; 
    --text-dark: #2c2c2c; 
    --text-light: #666666;
    --footer-text: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden; 
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* --- IZQUIERDA: FOTO GRANDE --- */
.left-photo-panel {
    flex: 1; 
    background-image: url('https://i.pinimg.com/1200x/31/d9/3c/31d93ce7e8a79876c4bd1c0b3afc6a47.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.photo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(197, 160, 101, 0.1); 
}

/* --- DERECHA: INFORMACIÓN --- */
.right-info-panel {
    flex: 1.2; 
    padding: 2rem 4rem;
    overflow-y: auto; 
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #fff, var(--accent-rose));
}

/* Cabecera */
.header-section {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estilo para el logo (Flor) */
.logo-img {
    width: 120px; /* Reducido ligeramente para dar equilibrio al título */
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/* Estilo para el título (Imagen nueva) */
.title-img {
    width: 250px;
    max-width: 90%;
    height: auto;
    display: block;
    margin-top: 5px;
}

/* Contacto */
.contact-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
    flex-shrink: 0;
}
.contact-item i { color: var(--accent-gold); margin-right: 5px; }

/* Servicios */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 3px solid var(--accent-gold);
}

.service-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 25px;
    text-align: center;
}

.service-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.service-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Botón Whatsapp */
.cta-container {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--text-dark); 
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn i {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #25D366; 
}

.whatsapp-btn:hover {
    background-color: var(--accent-gold); 
    transform: scale(1.05);
    color: #fff;
}

.whatsapp-btn:hover i {
    color: #fff;
}

/* Footer */
.site-footer {
    margin-top: auto; 
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: var(--footer-text); 
    font-weight: 600;
    flex-shrink: 0;
}

/* Responsive Móvil */
@media (max-width: 900px) {
    body { height: auto; overflow: auto; }
    .container { flex-direction: column; }
    .left-photo-panel { height: 250px; flex: none; }
    .right-info-panel { padding: 2rem 1.5rem; }
    .contact-bar { flex-direction: column; gap: 0.8rem; align-items: center; }
}

/* --- AÑADIR AL FINAL DE TU STYLES.CSS --- */
/* Clase para ocultar elementos visualmente pero mantenerlos para SEO/Lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}