/* theme.css - Estilos Visuais e Identidade */

/* Variáveis de Cores (Baseado em visual_identity.txt) */
:root {
    --color-primary: #E91E63; /* Magenta Vibrante */
    --color-secondary: #FFC107; /* Amarelo Âmbar */
    --color-background: #FAFAFA; /* Branco Suave */
    --color-text-main: #212121; /* Preto Quase Total */
    --color-text-opaque: #757575; /* Cinza Médio (Rodapé) */
    --color-accent: #C2185B; /* Tom derivado da primária */
}

/* Cabeçalho Fixo */
.header {
    background-color: var(--color-background);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: var(--color-text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Seções de Conteúdo */
h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

/* Footer */
.footer {
    background-color: var(--color-text-main);
    color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Informações da Empresa no Rodapé (Requisito Específico) */
.contact-info p {
    color: var(--color-text-opaque); /* Cor opaca */
    font-size: 0.75rem; /* Fonte menor */
    line-height: 1.2; /* Espaçamento de linhas reduzido */
    margin: 0;
}

/* CTA Destacado (Simulado com um bloco de informação importante) */
.spec-item {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-left: 5px solid var(--color-primary);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.spec-item h3 {
    color: var(--color-accent);
    margin-top: 0;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .hero {
        height: 300px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
}
