* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f7f5f0;
    color: #4a3c31;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: radial-gradient(#e6dfd3 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 20px;
    padding-bottom: 0;
}

.maintenance-container {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(198, 168, 114, 0.2);
    animation: fadeIn 1s ease-out;
    margin: auto;
}

.logo-container {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: filter 0.3s ease;
    animation: float 5s ease-in-out infinite;
}

.logo:hover {
    filter: drop-shadow(0 8px 12px rgba(198, 168, 114, 0.3));
}

.placeholder-text {
    font-size: 0.8rem;
    color: #c6a872;
    margin-top: 10px;
    font-style: italic;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #b38b4d;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    color: #c6a872;
}

.divider span {
    display: inline-block;
    animation: pulseStar 4s ease-in-out infinite;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: #c6a872;
    margin: 0 15px;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #8c7355;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.message-box {
    background: linear-gradient(135deg, #ffffff 0%, #fcfbf9 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #c6a872;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    animation: gentleGlow 4s ease-in-out infinite alternate;
}

.message-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #b38b4d;
    margin-bottom: 15px;
}

.message-box p {
    line-height: 1.6;
    color: #665646;
    font-weight: 300;
}

.whatsapp-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(198, 168, 114, 0.3);
}

.whatsapp-text {
    font-size: 0.95rem !important;
    font-style: italic;
    color: #8c7355 !important;
    margin-bottom: 15px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #c6a872;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(198, 168, 114, 0.3);
}

.whatsapp-button:hover {
    background-color: #b38b4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(198, 168, 114, 0.4);
}

.whatsapp-icon {
    margin-right: 4px;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseStar {
    0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 1; text-shadow: 0 0 10px #c6a872; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.7; }
}

@keyframes gentleGlow {
    from { box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
    to { box-shadow: 0 4px 20px rgba(198, 168, 114, 0.2); }
}

@media (max-width: 600px) {
    .title {
        font-size: 1.8rem;
    }
    
    .maintenance-container {
        padding: 40px 20px;
    }
}

.footer {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #a89f91;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 20px 0;
    margin-top: auto;
}
