body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fdc207;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Cabecera */
.main-header {
    text-align: center;
    padding: 20px;
    background-color: #008147;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-height: 80px; /* Ajusta según tu PNG */
}

/* Contenido Central */
.construction-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.construction-container h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #008147;
}

/* Animación simple */
.loader {
    border: 5px solid #008147;
    border-top: 5px solid #FFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos del Botón WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}