/* ===========================
   Reset e Base
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --cor-primaria: #2E7D32;
    --cor-secundaria: #1976D2;
    --cor-destaque: #F57C00;
    --cor-fundo: #F5F5F5;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --cor-branco: #FFFFFF;
    --cor-sucesso: #4CAF50;
    --cor-erro: #F44336;
    
    /* Sombras */
    --sombra-leve: 0 2px 4px rgba(0,0,0,0.1);
    --sombra-media: 0 4px 8px rgba(0,0,0,0.15);
    --sombra-forte: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transições */
    --transicao-rapida: 0.3s ease;
    --transicao-media: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    overflow-x: hidden;
}

/* ===========================
   Preloader
   =========================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cor-branco);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--cor-fundo);
    border-top-color: var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===========================
   Cookie Notice
   =========================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cor-texto);
    color: var(--cor-branco);
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transicao-media);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice p {
    margin: 0;
    flex: 1;
}

.cookie-notice a {
    color: var(--cor-destaque);
    text-decoration: underline;
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header & Menu
   =========================== */
.header {
    background: var(--cor-branco);
    box-shadow: var(--sombra-leve);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all var(--transicao-rapida);
}

.header.scrolled {
    box-shadow: var(--sombra-media);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: var(--cor-primaria);
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transicao-rapida);
}

.nav-link:hover {
    color: var(--cor-primaria);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cor-texto);
    margin: 3px 0;
    transition: all var(--transicao-rapida);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transicao-rapida);
    font-size: 16px;
}

.btn-primary {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background: #236B26;
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

.btn-secondary {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
}

.btn-secondary:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

.btn-outline {
    background: transparent;
    color: var(--cor-branco);
    border: 2px solid var(--cor-branco);
}

.btn-outline:hover {
    background: var(--cor-branco);
    color: var(--cor-primaria);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 74px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(25, 118, 210, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cor-branco);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   Banner Section
   =========================== */
.banner-section {
    padding: 40px 0;
    background: var(--cor-branco);
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
}

.banner-item {
    display: none;
    padding: 40px;
    text-align: center;
    color: var(--cor-branco);
}

.banner-item.active {
    display: block;
}

.banner-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ===========================
   Section Base
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cor-texto);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--cor-texto-claro);
}

/* ===========================
   Sobre Section
   =========================== */
.sobre-section {
    padding: 80px 0;
    background: var(--cor-branco);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.sobre-text h3 {
    font-size: 28px;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--cor-texto-claro);
}

.valores-lista {
    margin-top: 30px;
}

.valores-lista ul {
    list-style: none;
}

.valores-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.valores-lista svg {
    color: var(--cor-sucesso);
    flex-shrink: 0;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--sombra-media);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--cor-destaque);
    color: var(--cor-branco);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-forte);
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--cor-fundo);
    border-radius: 10px;
    transition: all var(--transicao-rapida);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--cor-primaria);
}

.stat-label {
    color: var(--cor-texto-claro);
}

/* ===========================
   Serviços Section
   =========================== */
.servicos-section {
    padding: 80px 0;
    background: var(--cor-fundo);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.servico-card {
    background: var(--cor-branco);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transicao-rapida);
    box-shadow: var(--sombra-leve);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.servico-icon {
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

.servico-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--cor-texto);
}

.servico-description {
    color: var(--cor-texto-claro);
    margin-bottom: 20px;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transicao-rapida);
}

.servico-link:hover {
    gap: 12px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.beneficio-item {
    text-align: center;
}

.beneficio-item svg {
    color: var(--cor-destaque);
    margin-bottom: 10px;
}

.beneficio-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.beneficio-item p {
    font-size: 14px;
    color: var(--cor-texto-claro);
}

.cta-section {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: var(--cor-branco);
    margin-top: 60px;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===========================
   Depoimentos Section
   =========================== */
.depoimentos-section {
    padding: 80px 0;
    background: var(--cor-branco);
}

.depoimentos-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.depoimentos-carousel {
    overflow: hidden;
}

.depoimento-item {
    display: none;
}

.depoimento-item.active {
    display: block;
}

.depoimento-card {
    background: var(--cor-fundo);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stars svg {
    color: #FFD700;
}

.depoimento-text {
    font-size: 18px;
    font-style: italic;
    color: var(--cor-texto);
    margin-bottom: 30px;
    line-height: 1.8;
}

.depoimento-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.depoimento-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.depoimento-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.depoimento-author span {
    color: var(--cor-texto-claro);
    font-size: 14px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-controls button {
    background: var(--cor-branco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--sombra-media);
    pointer-events: all;
    transition: all var(--transicao-rapida);
}

.carousel-controls button:hover {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transicao-rapida);
}

.indicator.active {
    background: var(--cor-primaria);
    width: 30px;
    border-radius: 5px;
}

/* ===========================
   Contato Section
   =========================== */
.contato-section {
    padding: 80px 0;
    background: var(--cor-fundo);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contato-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

.contato-info > p {
    margin-bottom: 30px;
    color: var(--cor-texto-claro);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--cor-texto-claro);
    margin: 0;
}

.info-text a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.contato-form {
    background: var(--cor-branco);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--sombra-media);
}

.contato-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--cor-primaria);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cor-texto);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color var(--transicao-rapida);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-mensagem {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.form-mensagem.success {
    background: var(--cor-sucesso);
    color: var(--cor-branco);
    display: block;
}

.form-mensagem.error {
    background: var(--cor-erro);
    color: var(--cor-branco);
    display: block;
}

.mapa-container {
    margin-top: 60px;
}

.mapa-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--cor-primaria);
}

.mapa-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--cor-texto);
    color: var(--cor-branco);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
}

.footer-column p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transicao-rapida);
}

.social-links a:hover {
    background: var(--cor-primaria);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cor-branco);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transicao-rapida);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.heart {
    color: var(--cor-erro);
}

/* ===========================
   WhatsApp Float
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--cor-branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-forte);
    z-index: 99;
    transition: all var(--transicao-rapida);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.5);
}

/* ===========================
   Páginas de Política
   =========================== */
.politica-page,
.termos-page {
    padding: 100px 0 80px;
    background: var(--cor-branco);
}

.politica-content,
.termos-content {
    max-width: 800px;
    margin: 0 auto;
}

.politica-content h1,
.termos-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--cor-primaria);
}

.ultima-atualizacao {
    color: var(--cor-texto-claro);
    margin-bottom: 40px;
}

.politica-texto h2,
.termos-texto h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--cor-texto);
}

.politica-texto p,
.termos-texto p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.politica-texto ul,
.termos-texto ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.politica-texto li,
.termos-texto li {
    margin-bottom: 10px;
}

.termos-aceite {
    background: var(--cor-fundo);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .stats-grid,
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 74px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--cor-branco);
        flex-direction: column;
        padding: 40px 20px;
        transition: right var(--transicao-media);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Sections */
    .sobre-grid,
    .contato-grid,
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .experience-badge {
        position: static;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
} 