/* --- Variáveis e Reset --- */
:root {
    --primary-color: #008000; /* Verde da Logo */
    --primary-dark: #005a00;
    --secondary-color: #1F2937;
    --accent-color: #D1FAE5;
    --text-color: #4B5563;
    --light-bg: #F9FAFB;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-color); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--secondary-color); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilitários --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-gray { background-color: var(--light-bg); }
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; cursor: pointer; text-align: center; font-size: 0.95rem; border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 128, 0, 0.3); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--primary-color); }
.full-width { width: 100%; }

/* --- Header --- */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--transition); padding: 20px 0; }
header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow); padding: 10px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* LOGO AUMENTADA (DOBRO) */
.logo img { 
    height: 120px; /* Era 60px, agora 120px */
    width: auto; 
    transition: var(--transition); 
}
/* Reduz um pouco ao rolar */
header.scrolled .logo img { height: 90px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--white); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-color); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
header.scrolled .nav-links a { color: var(--secondary-color); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-login { background-color: var(--white); color: var(--primary-color); padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.btn-login:hover { background-color: var(--primary-color); color: var(--white); }
header.scrolled .btn-login { background-color: var(--primary-color); color: var(--white); }
header.scrolled .btn-login:hover { background-color: var(--primary-dark); }
.mobile-menu-icon { display: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
header.scrolled .mobile-menu-icon { color: var(--secondary-color); }

/* --- Mobile Menu --- */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--white); z-index: 1001; padding: 30px; transition: var(--transition); box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.mobile-menu.active { right: 0; }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: none; }
.mobile-menu-overlay.active { display: block; }
.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-header img { height: 60px; }
.close-menu { font-size: 1.5rem; color: var(--secondary-color); cursor: pointer; }
.mobile-links li { margin-bottom: 20px; }
.mobile-links a { font-size: 1.1rem; color: var(--secondary-color); font-weight: 500; display: block; }
.btn-login-mobile { background: var(--primary-color); color: var(--white) !important; text-align: center; margin-top: 20px; padding: 12px; border-radius: var(--radius); }

/* --- Hero Section --- */
#hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); margin-top: -80px; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%); z-index: -1; }
.hero-content { max-width: 800px; z-index: 1; }
.badge-hero { background: rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; font-weight: 600; display: inline-block; margin-bottom: 20px; backdrop-filter: blur(5px); }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--white); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* --- Info Cards (Floating) --- */
.info-cards-section { margin-top: -60px; position: relative; z-index: 10; padding-bottom: 40px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.info-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 20px; transition: var(--transition); border-bottom: 4px solid var(--primary-color); }
.info-card:hover { transform: translateY(-5px); }
.info-card i { font-size: 2rem; color: var(--primary-color); background: var(--accent-color); padding: 15px; border-radius: 12px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.info-card p { font-size: 0.9rem; color: var(--text-color); line-height: 1.4; }

/* --- Serviços --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-color); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-box { background: var(--white); padding: 40px 30px; border-radius: var(--radius); text-align: center; border: 1px solid #eee; transition: var(--transition); }
.service-box:hover { border-color: var(--primary-color); box-shadow: var(--shadow); }
.icon-circle { width: 70px; height: 70px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 1.8rem; color: var(--primary-color); transition: var(--transition); }
.service-box:hover .icon-circle { background: var(--primary-color); color: var(--white); }
.service-box h3 { font-size: 1.25rem; margin-bottom: 15px; }

/* --- Diferenciais (App) --- */
.app-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tag { color: var(--primary-color); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 10px; display: block; letter-spacing: 1px; }
.app-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; color: var(--secondary-color); }
.check-list i { color: var(--primary-color); }
.app-stores { margin-top: 30px; display: flex; gap: 15px; }
.store-btn { background: var(--secondary-color); color: var(--white); padding: 10px 20px; border-radius: 6px; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.store-btn:hover { background: var(--primary-color); }
.app-image img { border-radius: 20px; box-shadow: var(--shadow); }

/* --- Contato (VERSÃO COM MAPA) --- */
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 0; 
    background: var(--white); 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    overflow: hidden; 
}
.contact-info { 
    padding: 50px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.contact-info h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-info p { margin-bottom: 30px; color: var(--text-color); }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-item i { color: var(--primary-color); font-size: 1.2rem; margin-top: 5px; }

/* Mapa */
.map-column { width: 100%; height: 100%; min-height: 400px; }
.map-column iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Footer --- */
footer {
    background: var(--secondary-color);
    padding: 25px 0;
    margin-top: 0; /* Garante que cole na seção anterior */
}
footer p {
    color: #9CA3AF;
    text-align: center;
    font-size: 0.85rem;
    margin: 0;
}

/* --- WhatsApp Float --- */
.whatsapp-btn { position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 999; transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); }

/* --- Responsividade (Media Queries) --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-icon { display: block; }
    .contact-wrapper { grid-template-columns: 1fr; } /* Coluna única no tablet */
    .map-column { height: 350px; }
    .contact-info { padding: 30px; }
    .app-container { grid-template-columns: 1fr; }
    .app-image { order: -1; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-links, .footer-social { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .info-cards-section { margin-top: 30px; }
    .btn-login { display: none; } 
    .header-actions { gap: 10px; }
    
    /* LOGO MENOR NO CELULAR PARA NÃO FICAR GIGANTE */
    .logo img { height: 80px; }
    header.scrolled .logo img { height: 60px; }
}