
:root {
    --color-warm-beige: #FDFBF7;
    --color-deep-teal: #2D5A56;
    --color-accent-gold: #D4A373;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--color-warm-beige);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('../recreacion1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.glass-nav {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 600;
    color: var(--color-deep-teal);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--color-accent-gold);
}

.btn-primary {
    background-color: var(--color-deep-teal);
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: bold;
}

.btn-secondary {
    background-color: white;
    color: var(--color-deep-teal);
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: bold;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20c157;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
