/* RESET E CONFIGURAÇÕES BÁSICAS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PALETA DE CORES */
    --primary-green: #51952c;      /* Verde principal */
    --light-background: #f2f5eb;   /* Fundo claro */
    --dark-green: #0b2f14;         /* Verde escuro */
    --neutral-green: #9bafa3;      /* Verde neutro */
    --accent-green: #97d640;       /* Verde accent */
    
    /* GRADIENTES */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    
    /* TIPOGRAFIA */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-green);
    overflow-x: hidden;
}

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

/* TIPOGRAFIA */
h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* OTIMIZAÇÃO DE IMAGENS */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* LAZY LOADING PLACEHOLDER */
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--light-background) 25%, var(--neutral-green) 50%, var(--light-background) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* HEADER */
.header {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(81, 149, 44, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(242, 245, 235, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(81, 149, 44, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.4);
}

/* MENU MOBILE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* MOBILE MENU STYLES */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 47, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 300px;
    width: 100%;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-link:hover {
    background: rgba(151, 214, 64, 0.2);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-mobile-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 214, 64, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* HERO SECTION */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Espaço para header fixo */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="leaf" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 10C30 10 10 30 10 50C10 70 30 90 50 90C70 90 90 70 90 50C90 30 70 10 50 10Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23leaf)"/></svg>') center/cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.highlight {
    color: var(--accent-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle-highlight {
    color: #E6FFE6;
    font-weight: 600;
}

.btn-hero {
    background: var(--accent-green);
    color: var(--dark-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background: #8fd435;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* COMPARAÇÃO VISUAL */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-item {
    text-align: center;
    flex: 1;
}

.comparison-item img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.comparison-item img:hover {
    transform: scale(1.05);
}

.label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

.days {
    display: block;
    font-size: 0.95rem;
    color: #E6FFE6;
    font-weight: 500;
}

.vs {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 0 1rem;
}

/* SEÇÕES GERAIS */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-green);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

.section-header p {
    color: var(--neutral-green);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* PROBLEMA/SOLUÇÃO */
.problem-solution {
    background: var(--light-background);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problems h3, .solutions h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(81, 149, 44, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid transparent;
}

.problem-list li {
    border-left-color: #e74c3c;
}

.solution-list li {
    border-left-color: var(--primary-green);
}

.problem-list li:hover, .solution-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 149, 44, 0.15);
}

.problem-list i {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.solution-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

/* BENEFÍCIOS */
.benefits {
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-background);
    border-radius: 15px;
    border: 2px solid rgba(81, 149, 44, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(81, 149, 44, 0.2);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--neutral-green);
    font-size: 0.95rem;
}

/* CREDIBILIDADE */
.credibility {
    background: var(--gradient-dark);
    color: white;
}

.credibility-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
}

.creator-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.creator-details h2 {
    color: white;
    margin-bottom: 1rem;
}

.credentials {
    margin-bottom: 1.5rem;
}

.credentials p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credentials i {
    color: var(--accent-green);
    min-width: 20px;
}

blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-green);
    border-radius: 10px;
    font-style: italic;
    backdrop-filter: blur(10px);
}

cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-green);
    font-style: normal;
}

/* DEMONSTRAÇÃO */
.demonstration {
    background: var(--light-background);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(81, 149, 44, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary-green);
    color: white;
    font-weight: 600;
    text-align: center;
}

.table-header .col {
    padding: 1.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--light-background);
}

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

.table-row .col {
    padding: 1.5rem;
    text-align: center;
}

.table-row .col.traditional {
    background: #ffebee;
    color: #c62828;
}

.table-row .col.lisa {
    background: var(--light-background);
    color: var(--primary-green);
    font-weight: 600;
}

/* PROCESSO DE PRODUÇÃO */
.process-showcase {
    margin-top: 3rem;
}

.process-showcase h3 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid rgba(81, 149, 44, 0.1);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--neutral-green);
}

/* GALERIA E VÍDEO */
.gallery-section {
    background: white;
    padding: 5rem 0;
}

/* VÍDEO CONTAINER */
.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--light-background);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(81, 149, 44, 0.1);
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--dark-green);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(81, 149, 44, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(81, 149, 44, 0.6);
}

.video-info {
    padding: 1rem;
}

.video-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-info p {
    color: var(--dark-green);
    line-height: 1.6;
    font-size: 1rem;
}

/* INDICADOR DE LOADING PARA VÍDEO */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-green);
    animation: spin 1s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.video-wrapper.loading::before {
    opacity: 1;
}

/* MOSAICO DE IMAGENS */
.mosaic-container {
    margin-top: 3rem;
}

.mosaic-container h3 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 1rem;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.mosaic-grid.expanded {
    max-height: none;
}

.mosaic-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(81, 149, 44, 0.1);
    opacity: 0;
    transform: scale(0.8);
}

.mosaic-item.loaded {
    opacity: 1;
    transform: scale(1);
}

.mosaic-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(81, 149, 44, 0.3);
    z-index: 10;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

/* ITENS ESPECIAIS DO MOSAICO */
.mosaic-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item:nth-child(12) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item:nth-child(18) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item:nth-child(25) {
    grid-column: span 2;
    grid-row: span 2;
}

/* EFEITO DE FADE NO FINAL DO MOSAICO */
.mosaic-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mosaic-grid.expanded::after {
    opacity: 0;
}

/* LOADING STATE PARA IMAGENS */
.mosaic-item.loading {
    background: linear-gradient(90deg, var(--light-background) 25%, var(--neutral-green) 50%, var(--light-background) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.mosaic-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* PLACEHOLDER PARA IMAGENS DE ERRO */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--light-background);
    color: var(--neutral-green);
    border: 2px dashed var(--neutral-green);
    border-radius: 8px;
    padding: 1rem;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
}

.mosaic-item:hover .image-placeholder {
    background: rgba(81, 149, 44, 0.1);
    border-color: var(--primary-green);
}

/* BOTÃO VER MAIS */
.view-more-btn {
    display: block;
    margin: 2rem auto 0;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.4);
}

.view-more-btn.hidden {
    display: none;
}

.view-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.view-more-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* MODAL DE IMAGEM */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.modal-content img:hover {
    transform: scale(1.02);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: rgba(81, 149, 44, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.prev-btn {
    margin-left: -60px;
}

.next-btn {
    margin-right: -60px;
}

.image-counter {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* PROVA SOCIAL */
.social-proof {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid rgba(81, 149, 44, 0.1);
}

.testimonial:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(81, 149, 44, 0.2);
}

.testimonial-content {
    text-align: center;
}

.testimonial i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--neutral-green);
    font-size: 0.9rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat:nth-child(2) {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.stat:nth-child(3) {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--neutral-green) 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* PONTOS DE VENDA */
.store-locator {
    background: var(--light-background);
}

.stores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.store-category h3, .request-store h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stores-list {
    list-style: none;
}

.stores-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(81, 149, 44, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.stores-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(81, 149, 44, 0.15);
}

.stores-list i {
    color: var(--primary-green);
}

.request-store {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.1);
    border: 2px solid rgba(81, 149, 44, 0.1);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--dark-green);
    text-decoration: none;
}

/* FAQ */
.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--light-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(81, 149, 44, 0.1);
    border: 2px solid rgba(81, 149, 44, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-green);
    color: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-green);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.6;
    color: var(--dark-green);
}

/* CTA FINAL */
.final-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.final-logo {
    margin-bottom: 2rem;
}

.final-logo img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1); /* Torna a logo branca */
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sub-text {
    font-size: 1rem !important;
    opacity: 0.9;
    margin-bottom: 2rem !important;
}

.btn-final {
    background: var(--accent-green);
    color: var(--dark-green);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-final:hover {
    background: #8fd435;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.social-proof-footer {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E6FFE6;
}

.social-item i {
    color: var(--accent-green);
}

/* FOOTER */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 3rem 0 1rem;
}

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

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1rem;
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1); /* Torna a logo branca */
}

.footer-section h3, .footer-section h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.6;
}

.footer-section i {
    color: var(--primary-green);
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-green);
    color: var(--neutral-green);
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 100px;
    }
    
    .mosaic-item:nth-child(odd) {
        grid-column: span 2;
    }
    
    .modal-navigation {
        position: static;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
        gap: 2rem;
    }
    
    .prev-btn, .next-btn {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .problem-solution-grid,
    .stores-grid,
    .creator-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .vs {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .comparison-item img {
        max-width: 200px;
        height: 150px;
    }
    
    .creator-image img {
        width: 150px;
        height: 150px;
    }
    
    .social-proof-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .table-row .col {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .gallery-section {
        padding: 3rem 0;
    }
    
    .video-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 90px;
        gap: 0.5rem;
    }
    
    .mosaic-item:nth-child(1),
    .mosaic-item:nth-child(5),
    .mosaic-item:nth-child(12),
    .mosaic-item:nth-child(18),
    .mosaic-item:nth-child(25) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .btn-hero,
    .btn-final {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .comparison-item img {
        max-width: 180px;
        height: 130px;
    }
    
    .creator-image img {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefit-card,
    .testimonial,
    .process-step {
        padding: 1.5rem;
    }
    
    .comparison-container {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo img {
        height: 40px;
    }
    
    .header-content {
        padding: 0.8rem 0;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 80px;
    }
    
    .mosaic-item:nth-child(even) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .modal-content img {
        max-width: 95vw;
        max-height: 70vh;
    }
    
    .image-placeholder {
        padding: 0.5rem;
    }
    
    .image-placeholder i {
        font-size: 1.5rem;
    }
    
    .image-placeholder span {
        font-size: 0.7rem;
    }
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mosaicFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.benefit-card,
.testimonial,
.faq-item,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

.mosaic-item {
    animation: mosaicFadeIn 0.5s ease-out forwards;
}

.mosaic-item:nth-child(even) {
    animation-delay: 0.1s;
}

.mosaic-item:nth-child(3n) {
    animation-delay: 0.2s;
}

/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}

/* LOADING STATE */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ACCESSIBILITY */
button:focus,
.faq-question:focus,
a:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* EFEITOS DE GLOW */
.btn-hero:hover,
.btn-final:hover,
.btn-header:hover {
    box-shadow: 0 0 20px rgba(151, 214, 64, 0.4);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* SMOOTH HEADER TRANSITION */
.header.scrolled .logo img {
    height: 45px;
}

.header.scrolled .header-content {
    padding: 0.8rem 0;
}

/* PRINT STYLES */
@media print {
    .hero-section,
    .final-cta,
    .footer,
    .header {
        display: none;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .section-header h2 {
        color: black !important;
    }
}
/* ESTILOS ADICIONAIS PARA NOVA SEÇÃO DE LOJAS */
.store-info {
    margin-top: 1rem;
}

.store-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(81, 149, 44, 0.1);
    border: 2px solid rgba(81, 149, 44, 0.1);
    transition: all 0.3s ease;
}

.store-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(81, 149, 44, 0.2);
}

.store-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.store-item p {
    color: var(--dark-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.store-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.store-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVIDADE PARA NOVA SEÇÃO DE LOJAS */
@media (max-width: 768px) {
    .store-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .store-item h4 {
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .store-item p {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .store-whatsapp {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .store-item {
        padding: 1rem;
    }
    
    .store-item h4 {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .store-whatsapp {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

