/* Reset Básico e Configurações Globais */
:root {
    --primary-green: #00a99d;
    --primary-blue: #00aedb;
    --dark-gray: #414042;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden; /* Previne scroll horizontal causado por animações */
}

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

/* Header e Navegação */
.main-header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.hamburger-menu.is-active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger-menu.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.is-active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.main-nav { display: flex; }
.main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--primary-green); }

/* Seções Padrão */
.hero-section { background: var(--light-gray); text-align: center; padding: 80px 0; }
.hero-section h1 { font-size: 2.8rem; margin-bottom: 1rem; color: var(--dark-gray); }
.hero-section p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem auto; }
.cta-button { display: inline-block; background: linear-gradient(90deg, var(--primary-green), var(--primary-blue)); color: var(--white); padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; border: none; cursor: pointer; font-size: 1rem; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
.solutions-section, .trust-section, .contact-section { padding: 60px 0; text-align: center; }
section h2 { font-size: 2.2rem; margin-bottom: 40px; }

/* Seção Soluções */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.solution-card { background: var(--light-gray); padding: 30px; border-radius: 10px; transition: transform 0.3s, box-shadow 0.3s; }
.solution-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.solution-card .icon { font-size: 3rem; margin-bottom: 1rem; color: var(--primary-green); }
.solution-card h3 { margin-bottom: 0.5rem; }

/* Seção Confiança */
.trust-section { background: var(--light-gray); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: left; }
.trust-item h3 { margin-bottom: 0.5rem; color: var(--primary-green); }

/* Seção Contato */
.contact-section {
    background: var(--light-gray); /* ALTERAÇÃO AQUI: de 'white' para 'light-gray' */
}
.contact-content { display: flex; flex-wrap: wrap; gap: 40px; text-align: left; margin-top: 40px; }
.contact-info, .contact-form { flex: 1; min-width: 300px; }
.contact-info p { margin-bottom: 1rem; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 5px; border: 1px solid #ccc; font-family: var(--font-family); }

/* Footer */
.main-footer { background: var(--dark-gray); color: var(--white); text-align: center; padding: 30px 0; }
.main-footer .container { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.social-links ul { list-style: none; padding: 0; display: flex; gap: 20px; }
.social-links a { color: var(--white); text-decoration: none; transition: opacity 0.3s; }
.social-links a:hover { opacity: 0.7; }
.social-links svg { width: 24px; height: 24px; fill: var(--white); }

/* Página de Conteúdo (Política de Privacidade) e LGPD */
.content-section { padding: 60px 0; text-align: left; }
.content-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 30px; }
.content-section h3 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; color: var(--dark-gray); border-left: 4px solid var(--primary-green); padding-left: 10px; }
.content-section p { margin-bottom: 15px; line-height: 1.8; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.8; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.privacy-consent { display: flex; align-items: center; text-align: left; margin-bottom: 20px; font-size: 0.9rem; }
.privacy-consent input[type="checkbox"] { margin-right: 10px; width: auto; transform: scale(1.2); }
.privacy-consent label { margin-bottom: 0; font-weight: normal; display: inline; }
.privacy-consent a { color: var(--primary-green); font-weight: bold; text-decoration: none; }
.privacy-consent a:hover { text-decoration: underline; }

/* Animação ao Rolar */
.animated-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .main-header .container { flex-wrap: wrap; }
    .main-nav { display: none; flex-direction: column; width: 100%; text-align: center; padding-top: 20px; }
    .main-nav.is-active { display: flex; }
    .main-nav a { padding: 15px 0; border-top: 1px solid var(--light-gray); }
    .hamburger-menu { display: flex; }
    .hero-section h1 { font-size: 2rem; }
}

@media (min-width: 1200px) {
    .solutions-grid.five-items {
        grid-template-columns: repeat(5, 1fr);
    }
}
