/*
Theme Name: Lumena Landing Page
Theme URI: https://www.lumena.uy
Author: Lumena
Description: Página única profesional para LÚMENA - en desarrollo
Version: 1.0
*/
body {
    font-family: 'Playfair Display', serif;
    background-color: #f6eee3;
    color: #2f4f4f;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
.logo {
    max-width: 300px;
    margin-bottom: 30px;
}
.button, .instagram-button {
    background-color: #2f4f4f;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
    margin-bottom: 20px;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}
.contact-info {
    margin-bottom: 30px;
}
.contact-info a {
    color: #2f4f4f;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    font-family: 'Roboto', sans-serif;
}
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.whatsapp-button img {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    .button, .instagram-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
