/* theme.css - Estilos específicos do tema */

/* Cabeçalho Fixo */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 0.5rem;
}

/* Navegação */
.nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

/* Seções */
.hero-section {
    background-color: var(--color-highlight);
    padding: 6rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.cta-highlight {
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

/* Rodapé */
.footer {
    background-color: var(--color-text);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info {
    flex: 1 1 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo a {
    color: white;
}

/* Estilo específico para os dados da empresa no rodapé */
.company-data {
    font-size: 0.75rem; /* Fonte menor */
    color: var(--color-footer-text); /* Cor opaca */
    line-height: 1.2; /* Espaçamento de linha reduzido */
    margin-top: 1rem;
}

.company-data p {
    margin-bottom: 0.25rem;
}

/* Responsividade do Rodapé */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
    }
}
