:root {
    --primary: #006837;
    --primary-soft: #e6f3ec;
    --accent: #10b981;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-soft: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: block;
    height: 60px; /* Define uma altura fixa */
    width: auto;   /* Mantém a proporção */
    min-width: 150px; /* Garante que o SVG tenha um espaço mínimo para renderizar */
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-cta-nav {
    background-color: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-nav:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 104, 55, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, var(--primary-soft), transparent);
}

.badge {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.stats-grid {
    display: flex;
    gap: 16px;
}

.stat-item {
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.stat-item i {
    color: var(--primary);
}

.image-box {
    position: relative;
    padding: 10px;
}

.image-box img {
    border-radius: 40px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.floating-badge i {
    background: var(--primary);
    color: white;
    padding: 10px;
    border-radius: 12px;
}

/* Unidades */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 10px auto;
}

.card-unidade {
    background: var(--white);
    padding: 32px;
    border-radius: 30px;
    text-align: left;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-unidade:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 104, 55, 0.12);
    border-color: var(--primary-soft);
}

.card-unidade h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-zap, .btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-zap {
    background-color: #25d366;
    color: white;
}

.btn-zap:hover { background-color: #1eb956; }

.btn-tel {
    background-color: var(--bg-soft);
    color: var(--primary);
}

.btn-tel:hover { background-color: var(--primary-soft); }

/* Footer */
.footer {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
}

.logo-footer {
    display: block;
    height: 50px;
    width: auto;
    min-width: 120px;
    filter: grayscale(1);
    opacity: 0.5;
    margin-bottom: 24px;
    object-fit: contain;
}

.divider {
    height: 1px;
    background: #f1f5f9;
    width: 200px;
    margin: 24px auto;
}

.cnpj { font-weight: 600; margin-bottom: 10px; }
.copy { font-size: 14px; color: #94a3b8; }