*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
    --c-green-50: #f0f7e6;
    --c-green-100: #d4eab8;
    --c-green-200: #b5dc88;
    --c-green-500: #5a9a1f;
    --c-green-600: #4a8219;
    --c-green-700: #3b6a14;
    --c-gold-400: #f0a500;
    --c-gold-500: #d4920a;
    --c-slate-50: #f8fafb;
    --c-slate-100: #f1f4f6;
    --c-slate-200: #e2e7eb;
    --c-slate-300: #c8d0d7;
    --c-slate-400: #94a3b3;
    --c-slate-500: #64748b;
    --c-slate-600: #475569;
    --c-slate-700: #334155;
    --c-slate-800: #1e293b;
    --c-slate-900: #0f172a;
    --c-white: #fff;
    --c-success: #16a34a;
    --c-error: #dc2626;
    --c-warning: #ea580c;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,.14);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--c-slate-800);
    background: var(--c-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

img { display: block; max-width: 100%; }

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-green-600);
    background: var(--c-green-50);
    border: 1px solid var(--c-green-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: .938rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--c-green-500);
    color: var(--c-white);
    box-shadow: 0 2px 12px rgba(90,154,31,.25);
}
.btn-primary:hover {
    background: var(--c-green-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90,154,31,.35);
}
.btn-outline {
    background: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-slate-800);
    border-color: var(--c-white);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header.scrolled .header-top { margin-top: -40px; }

.header-top {
    background: var(--c-slate-900);
    font-size: .8rem;
    color: var(--c-slate-300);
    transition: margin var(--transition);
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
.header-top-left,
.header-top-right { display: flex; align-items: center; gap: 20px; }
.header-top a, .header-top span {
    color: var(--c-slate-300);
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color var(--transition);
}
.header-top a:hover { color: var(--c-white); }
.header-socials { display: flex; gap: 8px; }
.header-socials a {
    width: 28px; height: 28px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
}
.header-socials a:hover { background: var(--c-green-500); color: var(--c-white); }

.nav {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-slate-200);
    transition: background var(--transition);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--c-green-500);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.logo-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-slate-900);
    display: block;
    line-height: 1.2;
}
.logo-tagline {
    font-size: .7rem;
    color: var(--c-green-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
}

.nav-menu {
    display: flex; align-items: center;
    list-style: none; gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--c-slate-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    width: 0; height: 2px;
    background: var(--c-green-500);
    border-radius: 2px;
    transition: all var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: var(--c-green-600); }
.nav-link:hover::after,
.nav-link.active::after { width: 20px; }

.nav-cta {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: var(--c-green-500);
    color: var(--c-white);
    font-size: .875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--c-green-600); transform: translateY(-1px); }

.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--c-slate-800);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(30,41,59,.75) 50%, rgba(15,23,42,.85) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}
.hero-text { max-width: 600px; }
.hero-text .badge { margin-bottom: 20px; background: rgba(90,154,31,.15); border-color: rgba(90,154,31,.3); color: var(--c-green-200); }
.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}
.text-accent { color: var(--c-gold-400); }
.hero-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    min-width: 200px;
    transition: all var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.hero-card-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-gold-400);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-card-label {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollPulse 2s infinite;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--c-slate-900);
    margin: 12px 0;
    letter-spacing: -.02em;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--c-slate-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== EMPRESAS ===== */
.empresas-section { background: var(--c-slate-50); }
.empresas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.empresa-card {
    background: var(--c-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--c-slate-200);
    transition: all var(--transition);
}
.empresa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.empresa-img { position: relative; height: 240px; overflow: hidden; }
.empresa-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.empresa-card:hover .empresa-img img { transform: scale(1.05); }
.empresa-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--c-white);
    color: var(--c-green-600);
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.empresa-body { padding: 32px; }
.empresa-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 4px;
}
.empresa-tagline {
    display: block;
    font-size: .875rem;
    color: var(--c-green-500);
    font-weight: 600;
    margin-bottom: 16px;
}
.empresa-body > p {
    font-size: .938rem;
    color: var(--c-slate-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.empresa-list {
    list-style: none;
    margin-bottom: 24px;
    display: grid;
    gap: 8px;
}
.empresa-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: .875rem;
    color: var(--c-slate-700);
    font-weight: 500;
}
.empresa-list i { color: var(--c-green-500); font-size: .8rem; }
.empresa-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.empresa-tags span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--c-slate-50);
    color: var(--c-slate-600);
    border-radius: var(--radius-full);
    border: 1px solid var(--c-slate-200);
}
.empresa-tags i { color: var(--c-green-500); font-size: .7rem; }

/* ===== PRODUTOS ===== */
.produtos-section { background: var(--c-white); }
.produtos-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px;
}
.tab-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    border: 2px solid var(--c-slate-200);
    background: var(--c-white);
    color: var(--c-slate-600);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--c-green-500); color: var(--c-green-600); }
.tab-btn.active {
    background: var(--c-green-500);
    border-color: var(--c-green-500);
    color: var(--c-white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .4s ease; }

.produtos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.produto-card {
    background: var(--c-white);
    border: 1px solid var(--c-slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.produto-img { position: relative; height: 200px; overflow: hidden; }
.produto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.produto-card:hover .produto-img img { transform: scale(1.08); }
.produto-icon {
    position: absolute; bottom: -20px; right: 20px;
    width: 44px; height: 44px;
    background: var(--c-green-500);
    color: var(--c-white);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.produto-body { padding: 28px 24px 24px; }
.produto-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 8px;
}
.produto-body > p {
    font-size: .875rem;
    color: var(--c-slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.produto-body ul { list-style: none; }
.produto-body li {
    display: flex; align-items: center; gap: 8px;
    font-size: .813rem;
    color: var(--c-slate-600);
    margin-bottom: 6px;
}
.produto-body li i { color: var(--c-green-500); font-size: .7rem; }

/* ===== SERVICOS ===== */
.servicos-section { background: var(--c-slate-50); }
.servicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.servico-card {
    background: var(--c-white);
    border: 1px solid var(--c-slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.servico-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--c-green-50), var(--c-green-100));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--c-green-600);
    font-size: 1.5rem;
    transition: all var(--transition);
}
.servico-card:hover .servico-icon {
    background: var(--c-green-500);
    color: var(--c-white);
}
.servico-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 10px;
}
.servico-card p {
    font-size: .875rem;
    color: var(--c-slate-500);
    line-height: 1.6;
}

/* ===== SOBRE ===== */
.sobre-section { background: var(--c-white); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.sobre-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--c-slate-900);
    margin: 12px 0 0;
    letter-spacing: -.02em;
}

.timeline { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.timeline-item {
    display: flex; gap: 20px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 23px; top: 50px; bottom: -24px;
    width: 2px;
    background: var(--c-green-100);
}
.timeline-item:last-child::before { display: none; }
.timeline-marker {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--c-green-500);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    flex-shrink: 0;
}
.timeline-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 6px;
}
.timeline-body p {
    font-size: .875rem;
    color: var(--c-slate-500);
    line-height: 1.7;
}

.sobre-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.counter-item {
    text-align: center;
    padding: 20px 8px;
    background: var(--c-slate-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-slate-200);
}
.counter-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-green-500);
    line-height: 1;
}
.counter-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-green-500);
}
.counter-label {
    display: block;
    font-size: .75rem;
    color: var(--c-slate-500);
    margin-top: 4px;
    font-weight: 500;
}

.sobre-visual { position: relative; }
.sobre-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.sobre-img-wrapper img {
    width: 100%; height: 480px;
    object-fit: cover;
}
.sobre-floating {
    position: absolute;
    background: var(--c-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    font-size: .813rem;
    font-weight: 600;
    color: var(--c-slate-800);
    z-index: 2;
}
.sobre-floating i { color: var(--c-green-500); font-size: 1.1rem; }
.sobre-floating-1 { top: 24px; right: -16px; animation: floatSoft 4s ease-in-out infinite; }
.sobre-floating-2 { bottom: 24px; left: -16px; animation: floatSoft 4s ease-in-out infinite 2s; }

/* ===== CIDADES ===== */
.cidades-section { background: var(--c-slate-50); }
.cidades-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cidade-card {
    background: var(--c-white);
    border: 1px solid var(--c-slate-200);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    transition: all var(--transition);
}
.cidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-green-200); }
.cidade-card i {
    font-size: 1.5rem;
    color: var(--c-green-500);
    margin-bottom: 12px;
}
.cidade-card h4 {
    font-size: .938rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 4px;
}
.cidade-card p { font-size: .8rem; color: var(--c-slate-500); }

/* ===== CONTATO ===== */
.contato-section { background: var(--c-white); }
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    display: flex; gap: 16px;
    padding: 24px;
    background: var(--c-slate-50);
    border: 1px solid var(--c-slate-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.info-card:hover { border-color: var(--c-green-200); box-shadow: var(--shadow-sm); }
.info-icon {
    width: 48px; height: 48px;
    background: var(--c-green-500);
    color: var(--c-white);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-card h4 {
    font-size: .938rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 4px;
}
.info-card p {
    font-size: .875rem;
    color: var(--c-slate-500);
    line-height: 1.6;
    margin-bottom: 4px;
}
.info-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .813rem;
    font-weight: 600;
    color: var(--c-green-500);
    text-decoration: none;
    transition: all var(--transition);
}
.info-link:hover { color: var(--c-green-700); gap: 10px; }
.email-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 6px;
}

.footer-email-list {
    display: inline-block;
}

.contato-form-wrapper {
    background: var(--c-slate-50);
    border: 1px solid var(--c-slate-200);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.contato-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-slate-900);
    margin-bottom: 4px;
}
.contato-form > p {
    font-size: .875rem;
    color: var(--c-slate-500);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: .813rem;
    font-weight: 600;
    color: var(--c-slate-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: .875rem;
    border: 1.5px solid var(--c-slate-200);
    border-radius: var(--radius-sm);
    background: var(--c-white);
    color: var(--c-slate-800);
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-green-500);
    box-shadow: 0 0 0 3px rgba(90,154,31,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-slate-400); }
.contato-form .btn { margin-top: 8px; }

/* ===== SOCIAL ===== */
.social-section { padding: 0 0 96px; background: var(--c-white); }
.social-banner {
    background: var(--c-slate-900);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}
.social-banner::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,154,31,.15), transparent);
}
.social-text { position: relative; z-index: 2; }
.social-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 6px;
}
.social-text p { font-size: .938rem; color: var(--c-slate-400); }
.social-links-row {
    display: flex; gap: 12px;
    flex-wrap: wrap;
    position: relative; z-index: 2;
}
.social-link-card {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--c-white);
    transition: all var(--transition);
    min-width: 180px;
}
.social-link-card:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.social-link-card i { font-size: 1.3rem; opacity: .7; }
.social-link-card strong { display: block; font-size: .813rem; font-weight: 600; }
.social-link-card span { font-size: .75rem; color: var(--c-slate-400); }

/* ===== FOOTER ===== */
.footer {
    background: var(--c-slate-900);
    color: var(--c-slate-300);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-about p {
    font-size: .875rem;
    line-height: 1.7;
    margin: 16px 0 20px;
    color: var(--c-slate-400);
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-icon { background: var(--c-green-600); }
.footer-logo .logo-name { color: var(--c-white); }
.footer-logo .logo-tagline { color: var(--c-green-200); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-slate-400);
    text-decoration: none;
    transition: all var(--transition);
    font-size: .875rem;
}
.footer-socials a:hover { background: var(--c-green-500); color: var(--c-white); }

.footer-col h4 {
    font-size: .938rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: .875rem;
    color: var(--c-slate-400);
    text-decoration: none;
    transition: all var(--transition);
}
.footer-col a:hover { color: var(--c-green-200); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list > div {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .875rem;
}
.footer-contact-list i { color: var(--c-green-500); margin-top: 3px; font-size: .8rem; }
.footer-contact-list span { color: var(--c-slate-400); line-height: 1.5; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: .813rem; color: var(--c-slate-500); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: .813rem;
    color: var(--c-slate-500);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-green-200); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    color: var(--c-white);
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 90;
    transition: all var(--transition);
    animation: fabPulse 3s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes scrollPulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: .4; transform: scaleY(.6); }
}
@keyframes fabPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.08); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-text p { max-width: 100%; margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-cards { flex-direction: row; justify-content: center; }
    .hero-card { min-width: 150px; }

    .empresas-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .contato-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .cidades-grid { grid-template-columns: repeat(3, 1fr); }
    .social-banner { flex-direction: column; text-align: center; }
    .social-links-row { justify-content: center; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-inner { height: 64px; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; max-width: 85vw;
        height: 100vh;
        background: var(--c-white);
        flex-direction: column;
        padding: 80px 24px 32px;
        gap: 4px;
        z-index: 101;
        box-shadow: -8px 0 32px rgba(0,0,0,.12);
        transition: right .4s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu.active { right: 0; }
    .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); width: 100%; }
    .nav-link::after { display: none; }
    .nav-cta { display: none; }

    .hero { min-height: auto; padding: 140px 0 64px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-cards { flex-direction: row; flex-wrap: wrap; }
    .hero-card { min-width: 120px; flex: 1; padding: 16px; }
    .hero-card-number { font-size: 1.5rem; }
    .hero-scroll { display: none; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    .produtos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .servicos-grid { grid-template-columns: 1fr; }
    .cidades-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-contact-list > div { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .social-links-row { flex-direction: column; align-items: stretch; }
    .social-link-card { min-width: auto; }
    .contato-form-wrapper { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .sobre-floating { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-cards { gap: 8px; }
    .hero-card { padding: 12px 8px; }
    .hero-card-number { font-size: 1.3rem; }
    .hero-card-label { font-size: .7rem; }
    .produtos-tabs { flex-direction: column; align-items: stretch; }
    .tab-btn { justify-content: center; }
    .cidades-grid { grid-template-columns: 1fr; }
    .sobre-counters { grid-template-columns: repeat(2, 1fr); }
    .empresa-body { padding: 24px; }
    .empresa-img { height: 180px; }
}

.empresa-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff; /* opcional, evita fundo estranho */
}
