/* ══════════════════════════════════════════════════════════════
   Big Solo Comercial Ltda — CSS Principal v2.0
   Mobile-first | CSS Custom Properties | Flexbox + Grid
   Paleta: Verde #00aa00 / Azul #1155cc / Cinza #f4f6f8
   ══════════════════════════════════════════════════════════════ */

/* ── RESET & VARIÁVEIS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:       #00aa00;
    --green-dark:  #007700;
    --green-light: #e6f9e6;
    --green-50:    rgba(0,170,0,.08);
    --blue:        #1155cc;
    --blue-dark:   #003fa3;
    --text:        #2c2c2c;
    --text-light:  #666;
    --border:      #e0e0e0;
    --bg:          #f4f6f8;
    --white:       #ffffff;
    --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
    --shadow-md:   0 6px 24px rgba(0,0,0,.12);
    --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
    --radius:      10px;
    --radius-lg:   18px;
    --transition:  .25s ease;
    --font-body:   'Inter', system-ui, sans-serif;
    --font-head:   'Montserrat', var(--font-body);
    --container:   1180px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ── UTILIDADES ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.text-center { text-align: center; }
.section { padding-block: 80px; }
.section--alt { background: var(--bg); }
.section--green { background: var(--green); color: var(--white); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-50);
    border: 1px solid rgba(0,170,0,.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 12px;
}
.section__title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.section__title span { color: var(--green); }
.section__subtitle {
    margin-top: 14px;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin-inline: auto;
}
.section--green .section__title,
.section--green .section__subtitle { color: var(--white); }
.section--green .section__tag { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.3); }

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1;
}
.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,150,0,.3);
}
.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn--outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--white {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}
.btn--nav {
    background: var(--green);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: .88rem;
}
.btn--nav:hover { background: var(--green-dark); }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
    background: var(--green-dark);
    color: var(--white);
    font-size: .8rem;
    padding-block: 6px;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar__inner span { display: flex; align-items: center; gap: 6px; }
.topbar__inner i { opacity: .8; }
.topbar__date { margin-left: auto; opacity: .85; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 12px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header__logo img { width: 56px; height: 56px; object-fit: contain; }
.header__logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}
.logo-slogan { font-size: .72rem; color: var(--text-light); letter-spacing: .05em; margin-top: 2px; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav__list li a:hover,
.nav__list li.active a { color: var(--green); background: var(--green-50); }
.nav__list li.active > a { font-weight: 600; }

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}
.header__hamburger:hover { background: var(--green-50); }
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO / SLIDER ──────────────────────────────────────────── */
.hero {
    position: relative;
    height: clamp(380px, 60vw, 620px);
    overflow: hidden;
    background: #000;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
}
.hero__slide.active { opacity: 1; }
.hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,80,0,.6) 0%, rgba(0,30,100,.4) 100%);
}
.hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-inline: clamp(24px, 8vw, 120px);
    max-width: 680px;
}
.hero__tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7fff7f;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-bottom: 16px;
}
.hero__subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.hero__dot.active { background: var(--white); width: 28px; border-radius: 6px; }

.hero__arrows {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
    pointer-events: none;
}
.hero__arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero__arrow:hover { background: rgba(255,255,255,.3); }

/* ── DESTAQUES HOME (cards rápidos) ──────────────────────────── */
.highlights {
    background: var(--white);
    padding-block: 0;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.highlight-card {
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: var(--green-50); }
.highlight-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green-dark);
    flex-shrink: 0;
}
.highlight-card__text strong { display: block; font-size: .95rem; color: var(--text); }
.highlight-card__text span { font-size: .8rem; color: var(--text-light); }

/* ── CARDS DE PRODUTOS ──────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.product-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__icon-bg {
    font-size: 3.5rem;
    color: var(--green);
    opacity: .25;
}
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.product-card__body { padding: 24px; flex: 1; }
.product-card__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.product-card__desc { font-size: .88rem; color: var(--text-light); line-height: 1.6; }
.product-card__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-dark);
    font-size: .88rem;
    font-weight: 600;
    transition: var(--transition);
}
.product-card__link:hover { color: var(--green); gap: 10px; }

/* ── SOBRE / MVV ────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about__image-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--green);
    border-radius: calc(var(--radius-lg) + 8px);
    z-index: -1;
    opacity: .3;
}
.about__image-wrap img { border-radius: var(--radius-lg); }
.about__content .section__tag { text-align: left; }
.about__content .section__title { text-align: left; }
.about__text { color: var(--text-light); margin-top: 18px; line-height: 1.8; }
.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.stat-box {
    background: var(--green-50);
    border: 1px solid rgba(0,170,0,.15);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.stat-box__num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}
.stat-box__label { font-size: .8rem; color: var(--text-light); margin-top: 4px; }

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--green);
    transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mvv-card__icon {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 14px;
}
.mvv-card__title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.mvv-card__text { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ── FORNECEDORES ───────────────────────────────────────────── */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
}
.supplier-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: var(--transition);
    filter: grayscale(60%);
    opacity: .75;
}
.supplier-card:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.supplier-card img { max-height: 48px; object-fit: contain; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, #005500 100%);
    color: var(--white);
    text-align: center;
    padding-block: 72px;
}
.cta__title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta__text { font-size: 1.05rem; opacity: .9; margin-bottom: 32px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PÁGINA INTERNA - BANNER ─────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #003300 100%);
    color: var(--white);
    padding-block: 64px;
    text-align: center;
}
.page-hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
}
.page-hero__breadcrumb {
    margin-top: 12px;
    font-size: .88rem;
    opacity: .8;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}
.page-hero__breadcrumb a { opacity: .75; transition: var(--transition); }
.page-hero__breadcrumb a:hover { opacity: 1; color: #7fff7f; }

/* ── CONTATO ────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}
.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-block: 20px;
    border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green-dark);
    flex-shrink: 0;
}
.contact-info__label { font-size: .78rem; color: var(--text-light); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.contact-info__value { font-size: .95rem; color: var(--text); margin-top: 2px; }
.contact-info__value a:hover { color: var(--green); }

/* ── FORMULÁRIOS ─────────────────────────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.form-card__title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green-50);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.form-label .required { color: var(--green); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .95rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,170,0,.12); }
.form-control.error { border-color: #d32f2f; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: .78rem; color: #d32f2f; margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-msg { padding: 14px 18px; border-radius: 8px; font-size: .9rem; margin-top: 16px; display: none; }
.form-msg.success { background: var(--green-light); color: var(--green-dark); border: 1px solid rgba(0,150,0,.3); display: block; }
.form-msg.error   { background: #fde8e8; color: #c62828; border: 1px solid rgba(200,0,0,.3); display: block; }

/* ── MAPA ────────────────────────────────────────────────────── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-top: 48px;
}
.map-wrap iframe { display: block; width: 100%; border: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
    background: #111a10;
    color: rgba(255,255,255,.75);
    font-size: .88rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-block: 64px;
}
.footer__logo { height: 60px; margin-bottom: 16px; object-fit: contain; }
.footer__col p { line-height: 1.8; }
.footer__title {
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,170,0,.5);
}
.footer__links li { margin-bottom: 8px; }
.footer__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__links i { font-size: .65rem; color: var(--green); }
.footer__address p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer__address i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer__address a { color: rgba(255,255,255,.65); }
.footer__address a:hover { color: var(--white); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.footer__social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 20px;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .8rem;
}
.footer__bottom a:hover { color: var(--green); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green); }

/* ── PÁGINA EMPRESA ─────────────────────────────────────────── */
.valores-list { margin-top: 16px; }
.valores-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-block: 10px;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
    color: var(--text);
}
.valores-list li:last-child { border-bottom: none; }
.valores-list i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ── PÁGINA PRODUTOS ─────────────────────────────────────────── */
.category-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.category-btn {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.category-btn:hover,
.category-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.products-section { margin-bottom: 64px; }
.products-section__title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.products-section__title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--green-50);
}
.products-section__title i { color: var(--green); }

/* ── TRABALHE CONOSCO ─────────────────────────────────────────── */
.careers-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.careers-benefits { margin-top: 24px; display: grid; gap: 14px; }
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--green-50);
    border: 1px solid rgba(0,170,0,.12);
}
.benefit-item i { color: var(--green-dark); font-size: 1.1rem; margin-top: 2px; }
.benefit-item strong { display: block; font-size: .9rem; color: var(--text); }
.benefit-item span { font-size: .82rem; color: var(--text-light); }

/* ── ANIMAÇÕES ───────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVO ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
    .mvv-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .careers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --container: 100%; }
    .section { padding-block: 56px; }

    .header__hamburger { display: flex; }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .nav.open { max-height: 400px; }
    .nav__list { flex-direction: column; gap: 4px; }
    .nav__list li a { padding: 12px 16px; font-size: 1rem; }
    .header__inner { flex-wrap: wrap; position: relative; }

    .hero__content { padding-inline: 24px; max-width: 100%; }
    .highlights__grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about__image-wrap { display: none; }
    .mvv-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .topbar__inner { flex-direction: column; gap: 4px; }
    .topbar__date { margin-left: 0; }
}

@media (max-width: 480px) {
    .highlights__grid { grid-template-columns: 1fr; }
    .hero__btns { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .about__stats { grid-template-columns: 1fr; }
}
