/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* --- BACKGROUND E CONTAINER PRINCIPAL --- */
.bg-container {
    /* IMPORTANTE: Coloque o nome do arquivo da sua imagem de fundo aqui */
    background-image: url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* --- PAINEL CENTRAL (VERDE ESCURO) --- */
.overlay-panel {
    background-color: rgba(36, 51, 40, 0.92);
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    overflow-y: auto; 
    
    /* Configurações para a animação do JS */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Classe adicionada pelo JS para fazer o painel aparecer */
.overlay-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- LOGO --- */
.logo-container {
    margin-bottom: 25px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #d4c19c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d4c19c;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4c19c;
    text-transform: uppercase;
}

/* --- TIPOGRAFIA PRINCIPAL --- */
h1.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

p.text-light {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

p.text-medium {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.mb-30 {
    margin-bottom: 30px !important;
}

/* --- LISTA DE SERVIÇOS (LINHAS DIVISÓRIAS) --- */
.services-list {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

.services-list li {
    font-size: 13px;
    font-weight: 500;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.services-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- RODAPÉ / CONTATOS --- */
.footer-info {
    width: 100%;
    margin-top: 10px;
}

.address-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.address-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 300;
}

.contact-links {
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-links i {
    margin-right: 5px;
}

.social-links {
    font-size: 13px;
    letter-spacing: 1px;
}

.social-links i {
    margin-right: 3px;
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 768px) {
    .overlay-panel {
        padding: 30px 20px;
        max-width: 100%;
        background-color: rgba(36, 51, 40, 0.95);
    }

    h1.main-title {
        font-size: 24px;
    }

    p.text-light, p.text-medium, .services-list li, .address-text {
        font-size: 11px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .logo-title {
        font-size: 28px;
    }
}