
:root {
    --primary-color: #4CAF50; 
    --secondary-color: #0b570d; 
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-secondary: #555;
}


.landing-header {
    background-color: #fff;
    color: var(--text-color);
    padding: 1rem 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary-color);
    
}

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

.landing-header h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: left;
}

.nav-menu-landing {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    
}

.nav-menu-landing li a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    
}

.nav-menu-landing li a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5a20 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

section.hero .hero-content {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center; 
}

h1{
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white; 
    text-align: center; 
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white; 
    text-align: center; 
}

.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}


.section {
    padding: 70px 20px;
}

.bg-light {
    background-color: var(--light-bg);
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color); 
    position: relative;
}


.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}


.info-box {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-left: 5px solid var(--primary-color);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}


.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: none; 
    padding-bottom: 0;
}

.info-box p {
    font-size: 1.1rem;
    text-align: left; 
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: none; 
    padding-bottom: 0;
}

.content-card p, .content-card ul {
    text-align: left; 
}

.content-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-secondary);
}

.content-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.content-card ul li:last-child {
    border-bottom: none;
}

.content-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
    top: 5px;
}



.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.atuacao-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary-color);
}

.atuacao-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: none; 
    padding-bottom: 0;
}

.atuacao-card p, .atuacao-card ul {
    text-align: left; 
}

.atuacao-card ul {
    list-style: none;
    padding-left: 0;
}

.atuacao-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.atuacao-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}


.ficha-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-collapse: collapse; 
}

.ficha-table th,
.ficha-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ficha-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    width: 40%;
}

.ficha-table td {
    color: var(--text-secondary);
}

.ficha-table tr:last-child th,
.ficha-table tr:last-child td {
    border-bottom: none;
}

/* rodapé */
footer {
    background-color: #333; 
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    color: white; 
    text-align: center; 
    margin-bottom: 10px;
    
}

.footer-links {
    margin-top: 20px;
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border: 1px solid white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.footer-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* responsividade */
@media (max-width: 768px) {
    .landing-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu-landing {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .content-grid,
    .atuacao-grid {
        grid-template-columns: 1fr;
    }
    
    .ficha-table th,
    .ficha-table td {
        display: block;
        width: 100%;
        box-sizing: border-box; 
    }
    
    .ficha-table th {
        border-bottom: none;
        padding-bottom: 10px;
    }

    .ficha-table tr {
        border-bottom: 1px solid #eee;
    }

    .ficha-table tr:last-child {
        border-bottom: none;
    }
}