/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e2f;
    background-color: #f9fbf9;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #1e3a2f;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.8rem;
    color: #c8e6d9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #f5b042;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #eef5ea 0%, #d4e4ce 100%);
    padding: 60px 0;
    border-bottom: 1px solid #cbdcc4;
}

.hero h1 {
    font-size: 2.8rem;
    color: #1a3b2c;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    color: #2d5a44;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    max-width: 85%;
    color: #2c3e2f;
}

/* Sections */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #e0ece0;
}

.section-title {
    font-size: 2rem;
    color: #1e3a2f;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #f5b042;
}

/* Cards services */
.services-grid, .diffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card, .diff-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.service-card:hover, .diff-card:hover {
    transform: translateY(-5px);
}

.service-card h3, .diff-card h3 {
    color: #1e3a2f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Processo */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.step {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step h4 {
    color: #f5b042;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.faq-item h4 {
    color: #1e3a2f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
.main-footer {
    background-color: #172e24;
    color: #ddd;
    padding: 40px 0 20px;
}

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

.footer-info h4, .footer-contact h4, .footer-links h4 {
    color: #f5b042;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: #f5b042;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a4a3a;
    font-size: 0.8rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e2f;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner button {
    background: #f5b042;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        max-width: 100%;
    }
    .process-steps {
        flex-direction: column;
    }
}