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

body {
    background: #F0E7E0;  /* Creme Siccaroni */
    font-family: 'Inter', -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 80px 20px; /* padding-bottom aumentado para o rodapé não encobrir conteúdo */
}

/* Efeito de textura suave no fundo (opcional) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(140, 106, 62, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.controls {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.lang-btn {
    background: #FFFFFF;
    border: 1px solid #E3D5C8;
    border-radius: 8px;
    width: 42px;
    height: 32px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-btn.active {
    border: 2px solid #8C6A3E;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(140, 106, 62, 0.15);
}

.lang-btn:hover {
    border-color: #8C6A3E;
    transform: scale(1.02);
    background: #FBF7F2;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
    animation: fade 0.3s ease;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logo-wrapper {
    margin-bottom: 24px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 0 0 2px #FFFFFF, 0 0 0 4px #E6D9CE;
}

h1 {
    font-family: 'Cormorant Garamond', 'Inter', serif;
    font-size: 34px;
    font-weight: 500;
    color: #1B1B1B;
    letter-spacing: 8px;
    margin-right: -8px; /* compensa o letter-spacing para manter centralizado */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 13px;
    color: #8C6A3E;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #8C6A3E;
    margin: 0 auto 20px;
}

.description {
    font-size: 15px;
    color: #6E6158;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.services {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.services span {
    font-size: 13px;
    color: #8C6A3E;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: #FBF7F2;
    padding: 4px 10px;
    border-radius: 20px;
}

.personalized {
    font-size: 13px;
    color: #9A8B7E;
    font-style: italic;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1.5px solid #E3D5C8;
    border-radius: 50px;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #2A2521;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.btn i {
    font-size: 18px;
    width: 24px;
    color: #8C6A3E;
}

.btn:hover {
    border-color: #8C6A3E;
    background: #FBF7F2;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(140, 106, 62, 0.12);
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #9A8B7E;
    margin-bottom: 28px;
    padding: 8px 0;
    flex-wrap: wrap;
    text-align: center;
    background: #FFFFFF;
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.info i {
    font-size: 14px;
    color: #8C6A3E;
}

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social a {
    color: #C6B4A4;
    font-size: 22px;
    transition: color 0.2s;
}

.social a:hover {
    color: #8C6A3E;
}

/* ===== FOOTER ===== */
footer {
    position: fixed;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #C6B4A4;
    letter-spacing: 0.2px;
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
}

footer p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(227, 213, 200, 0.4);
    pointer-events: auto;
}

footer a {
    color: #8C6A3E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

footer a:hover {
    color: #6F5430;
    text-decoration: underline;
}

footer .dot {
    color: #CBBCAE;
    font-size: 10px;
    margin-left: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .controls {
        top: 15px;
        right: 15px;
    }
    
    .lang-btn {
        width: 36px;
        height: 28px;
    }
    
    .container {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 27px;
        letter-spacing: 6px;
        margin-right: -6px;
    }
    
    .subtitle {
        font-size: 11px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .services {
        gap: 12px;
    }
    
    .services span {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .info {
        font-size: 10px;
        padding: 6px 12px;
    }

    footer {
        bottom: 12px;
        font-size: 10px;
    }
    footer p {
        padding: 4px 14px;
    }
}