/* Variables de color */
:root {
    --color-fondo: #F5F0E7; /* Crema */
    --color-btn: #355C4B; /* Verde profundo */
    --color-btn-hover: #294639;
    --color-texto: #343936;
    --color-whatsapp: #25D366;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 600px;
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px; /* Espacio para botón flotante */
}

/* Imagen Principal */
.image-wrapper {
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Sección del Botón */
.button-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    background-color: var(--color-btn);
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-whatsapp:hover {
    background-color: var(--color-btn-hover);
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

.location-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
}

.footer .disclaimer {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Botón Flotante WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-whatsapp);
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.2s;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-container {
        box-shadow: none;
    }
}
