/* --- ESTILOS FLOR XOPAN --- */
:root {
    --beige-lino: #fdfaf4;
    --dorado-solido: #bf953f;
    --oro-abundancia: #d4af37;
    --morado-noble: #2c1e4a;
}

body {
    background-color: var(--beige-lino);
    color: var(--morado-noble);
    font-family: 'Lora', serif; /* O una letra que te guste */
}

/* El Hero de ancho completo */
.hero-visual {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(rgba(253, 250, 244, 0.3), rgba(253, 250, 244, 0.3)), url('/images/fondo-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 20px;
}

.titulo-florecer {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--morado-noble);
}

.subrayado-organico {
    border-bottom: 2px solid var(--oro-abundancia);
}
