/* Variáveis de Cores */
:root {
    --primary-color: #0F4D0F; /* Verde escuro para o corporativo */
    --secondary-color: #C84600; /* Laranja para destaques e modernidade */
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #dee2e6;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px; /* Ajuste conforme necessário */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(15, 77, 15, 0.8), rgba(15, 77, 15, 0.8)), url('https://via.placeholder.com/1920x600.png?text=Fundo+Estrategico') no-repeat center center/cover; /* Placeholder para imagem de fundo */
    color: var(--light-text-color);
    text-align: center;
    padding: 100px 0;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a03800; /* Um tom mais escuro do laranja para o hover */
}

/* Seções de Conteúdo */
.content-section {
    padding: 80px 0;
}

.content-section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.content-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.content-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.content-section h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h4 {
    font-size: 1.4em;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Solution Items */
.solution-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.6em;
}

/* Table Styling */
.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

table th {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-final {
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 50px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Rodapé */
footer {
    background-color: var(--bg-dark);
    color: var(--light-text-color);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    margin-top: 50px;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1.1em;
    }

    .content-section h2 {
        font-size: 2em;
    }

    .content-section h3 {
        font-size: 1.5em;
    }

    .content-section p, .content-section ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    nav ul li {
        margin: 5px 8px;
    }

    #hero {
        padding: 60px 0;
    }

    #hero h1 {
        font-size: 2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .content-section {
        padding: 50px 0;
    }

    .content-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .solution-item {
        padding: 20px;
    }
}
