:root {
    --gold: #D4AF37;
    --gold-light: #F1D592;
    --dark: #000000;
    --dark-alt: #1A1A1A;
    --white: #FFFFFF;
    --gray: #A0A0A0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 2rem 0;
}

/* Background effects */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('../img/spa_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}



.container {
    text-align: center;
    max-width: 600px;
    padding: 0rem;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-symbol {
    max-width: 320px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 5px 25px rgba(0, 0, 0, 0.5));
    /* Efeito de máscara para suavizar as bordas da imagem */
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 95%);
    mask-image: radial-gradient(circle, black 60%, transparent 95%);
}



/* Content Styles */
.content {
    margin-bottom: 0rem;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.divider {
    width: 50px;
    height: 1px;
    background-color: var(--gray);
    margin: 1rem auto;
    opacity: 0.3;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--gray);
    max-width: 450px;
    margin: 0 auto;
}

/* WhatsApp Button */
.contact-section p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-symbol {
        max-width: 220px;
    }



    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}