/* --- ESTILOS DO HERO (Padrão Galeria/Legal) --- */
.hero-legal {
    background-color: var(--color-dark, #1A2F23);
    padding: 160px 0 80px 0;
    text-align: center;
}
.hero-legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}
.hero-legal-line {
    width: 80px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto;
}

/* --- CORPO DA PÁGINA --- */
.legal-content-wrapper {
    background: white;
    max-width: 950px; /* Um pouco mais largo para os termos */
    margin: -40px auto 80px;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.legal-header-info {
    text-align: center;
    margin-bottom: 50px;
}

.legal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #1a2f23;
    margin: 45px 0 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-body p, .legal-body li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-list {
    margin-left: 20px;
    margin-bottom: 25px;
}

/* Caixa de Contacto Realçada */
.contact-box {
    background: #fafafa;
    border-left: 4px solid #D4AF37;
    padding: 25px;
    margin: 20px 0;
    border-radius: 4px;
}
.contact-box p { margin-bottom: 8px !important; }
.contact-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.contact-link:hover { opacity: 0.8; text-decoration: underline; }

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f4f1ea;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-content-wrapper { padding: 30px; margin-top: 0; }
    .hero-legal-title { font-size: 2.5rem; }
}