/* Reset e variáveis globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #fff;
    --bronze-queimado: #CD7F32;
    --azul-marinho-solido: #000080;
    --terracota-profundo: #CC4E5C;
    --verde-oliva-envelhecido: #6B8E23;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* Header e Navegação */
header {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hierarquia visual - destaque para itens importantes */
nav ul li:nth-child(3) a { /* Soluções */
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

nav ul li:nth-child(3) a:hover {
    border-bottom: 2px solid var(--secondary-color);
}

nav ul li:last-child a { /* Contato */
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

nav ul li:last-child a:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Indicador de página ativa */
nav ul li a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Efeito de sublinhado animado */
av ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Novo Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 360px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Banner Principal */
.banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Botão secundário */
.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    margin-left: 1rem;
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Estilo para botões no banner */
.banner-buttons {
    margin-top: 1.5rem;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Efeito de ripple para botões */
.cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.cta-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(1, 1) translate(-50%, -50%);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Seções de Conteúdo */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

section p {
    margin-bottom: 1rem;
}

section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

section ul li {
    margin-bottom: 0.5rem;
}

/* Seção Aroeira - Nova versão */
.aroeira-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.aroeira-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.aroeira-text {
    text-align: left;
}

.aroeira-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.aroeira-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.aroeira-text ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.aroeira-text li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
}

.aroeira-image {
    background-color: var(--light-color);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.image-placeholder {
    text-align: center;
    padding: 1rem;
}

/* Seção Aroeira - Versão antiga */
.aroeira-section-old {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.aroeira-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.aroeira-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aroeira-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.aroeira-section li {
    margin-bottom: 0.3rem;
}

/* Seção Três Mundos */
.tres-mundos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.tres-mundos h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mundos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mundo-card {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mundo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.mundo-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mundo-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Seção O Problema que Soluciono */
.problema-soluciono {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problema-item {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.problema-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.problema-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Pilares (3 colunas) */
.pilares {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.pilar {
    flex: 1;
    min-width: 300px;
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pilar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pilar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pilar:hover::before {
    transform: scaleX(1);
}

.pilar h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.pilar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Perfis (2 colunas) */
.perfil {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.pessoa {
    flex: 1;
    min-width: 300px;
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pessoa:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.pessoa h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.pessoa h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Animação de fade-in para seções */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe para elementos com animação */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Efeito de highlight para links */
a {
    transition: color 0.2s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.2s ease;
}

a:hover::after {
    width: 100%;
}

/* Formulário de Contato */
.formulario {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-light);
        transition: all 0.3s ease;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .pilares, .perfil {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Estilo para link ativo */
.nav-links a.active {
    color: var(--secondary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
}

/* Estilos para métricas de impacto */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Seção Três Mundos */
.tres-mundos-section {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 8px;
    text-align: center;
}

.tres-mundos-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tres-mundos-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

.mundos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mundo-card {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.mundo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.mundo-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mundo-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* CTA Cards Section */
.cta-cards-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.cta-card {
    display: block;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.cta-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cta-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Metrics Section */
.metrics-section {
    background-color: var(--light-color);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 8px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.metric-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metric-card .metric-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Footer Partnership */
.footer-partnership {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}
/* Métricas na Home */
.home-metricas {
    background-color: var(--light-color);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 8px;
}

.metricas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.metrica-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metrica-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metrica-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Estilos para cards na página Sobre */
.cards-section {
    margin-top: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.card-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}