/* ═══════════════════════════════════════════════════════════════
   Isomac EPS — Design System
   Tipografia: Barlow Condensed (display) + Inter (body)
   Paleta: verde #35a82f · escuro #1c1c1c · cinza claro #f4f6f3
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600&display=swap');

/* ── Variáveis ──────────────────────────────────────────────── */
:root {
    --green:        #35a82f;
    --green-dark:   #227820;
    --green-bright: #5dd458;
    --green-light:  #eaf7e9;
    --dark:         #1c1c1c;
    --dark-mid:     #2a2a2a;
    --dark-section: #1e2a1e;
    --gray-bg:      #f4f6f3;
    --white:        #ffffff;
    --text-body:    #333333;
    --text-muted:   #6b7280;
    --border:       #dde8dd;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
    --shadow-md:    0 6px 24px rgba(0,0,0,.12);
    --radius:       6px;
    --radius-lg:    12px;
    --transition:   .25s ease;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
}

img { max-width: 100%; height: auto; }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

/* ── Header / Navbar ────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #289026 0%, var(--green) 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,.22);
    transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
    background: linear-gradient(180deg, #1f6e1d 0%, #267d24 100%);
    box-shadow: 0 4px 32px rgba(0,0,0,.38);
}

.site-nav {
    padding: .65rem 0;
    transition: padding .3s ease;
}
.site-nav.scrolled { padding: .35rem 0; }

.nav-logo {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform .25s ease, opacity .25s ease;
}
.navbar-brand:hover .nav-logo { transform: scale(1.05); opacity: .9; }

.site-nav .navbar-nav .nav-link {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: rgba(255,255,255,.88) !important;
    padding: .45rem .8rem;
    border-radius: var(--radius);
    position: relative;
    transition: background .2s ease, color .2s ease;
}

.site-nav .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: .8rem;
    right: .8rem;
    height: 2px;
    background: rgba(255,255,255,.7);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.site-nav .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.site-nav .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    transform: scaleX(1);
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active,
.site-nav .navbar-nav .nav-link.show {
    background: rgba(0,0,0,.15);
    color: #fff !important;
}

@keyframes navDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.site-nav .dropdown-menu {
    background: #182e17;
    border: 1px solid rgba(255,255,255,.08);
    border-top: 2px solid var(--green-bright);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 10px 36px rgba(0,0,0,.32);
    min-width: 240px;
    padding: .5rem 0;
    margin-top: 0;
}
.site-nav .dropdown-menu.show {
    animation: navDropIn .2s cubic-bezier(.4,0,.2,1) both;
}

.site-nav .dropdown-item {
    font-family: var(--font-body);
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    padding: .55rem 1.25rem .55rem 1.1rem;
    position: relative;
    transition: background .18s, color .18s, padding-left .18s;
}
.site-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 55%;
    background: var(--green-bright);
    border-radius: 0 2px 2px 0;
    transition: transform .18s cubic-bezier(.4,0,.2,1);
}
.site-nav .dropdown-item:hover,
.site-nav .dropdown-item.active {
    background: rgba(53,168,47,.2);
    color: #fff;
    padding-left: 1.55rem;
}
.site-nav .dropdown-item:hover::before,
.site-nav .dropdown-item.active::before {
    transform: translateY(-50%) scaleY(1);
}

.btn-whatsapp-nav {
    background: #fff;
    color: var(--green) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    border-radius: 30px;
    padding: .42rem 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn-whatsapp-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(53,168,47,.14), transparent);
    transform: skewX(-20deg);
    transition: left .45s ease;
}
.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.28);
    color: var(--green-dark) !important;
}
.btn-whatsapp-nav:hover::before { left: 130%; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-green {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .7rem 1.8rem;
    border-radius: 30px;
    border: 2px solid var(--green);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53,168,47,.4);
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .7rem 1.8rem;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,.7);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

.btn-outline-green {
    display: inline-block;
    background: transparent;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: .6rem 1.6rem;
    border-radius: 30px;
    border: 2px solid var(--green);
    transition: background var(--transition), color var(--transition);
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark) center center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,30,10,.85) 0%,
        rgba(10,30,10,.75) 50%,
        rgba(53,168,47,.25) 100%
    );
    z-index: 1;
}

/* Diagonal accent — a geometric slash echoing the hexagon logo mark */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; right: -5%;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(53,168,47,.22) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-title span { color: var(--green-bright); }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
    background: var(--green);
    padding: 1.4rem 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.2);
    padding: .5rem 1rem;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .2rem;
}

/* ── Sections ────────────────────────────────────────────────── */
.section-light { background: var(--white); padding: 5rem 0; }
.section-gray  { background: var(--gray-bg); padding: 5rem 0; }
.section-dark  { background: var(--dark-section); padding: 5rem 0; }
.section-green { background: var(--green); padding: 4rem 0; }

/* Hex pattern overlay for dark sections */
.section-dark {
    background-image:
        radial-gradient(ellipse at top right, rgba(53,168,47,.12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpath d='M14 0l14 8v16l-14 8L0 24V8zm28 0l14 8v16l-14 8-14-8V8zM14 32l14 8v16l-14 8L0 56V40zm28 0l14 8v16l-14 8-14-8V40z' fill='none' stroke='rgba(255,255,255,.03)' stroke-width='1'/%3E%3C/svg%3E");
    background-color: var(--dark-section);
}

.section-label {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: .5rem;
}

.section-label-white {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-bright);
    display: block;
    margin-bottom: .5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .5rem;
}

.section-title-white {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
}

.section-subtitle-white {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
}

.divider-green {
    width: 50px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: .9rem 0 1.5rem;
}

.divider-green-white {
    width: 50px;
    height: 3px;
    background: var(--green-bright);
    border-radius: 2px;
    margin: .9rem 0 1.5rem;
}

/* ── Breadcrumb Hero ─────────────────────────────────────────── */
.breadcrumb-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10,30,10,.88) 0%,
        rgba(10,30,10,.7) 60%,
        rgba(53,168,47,.2) 100%
    );
}

.bh-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.bh-breadcrumb {
    margin-bottom: .75rem;
}

.bh-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

.bh-breadcrumb .breadcrumb-item a:hover { color: var(--green-bright); }

.bh-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}

.bh-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.35);
}

.bh-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.bh-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin-top: .5rem;
    margin-bottom: 0;
}

/* ── Cards – Produtos ────────────────────────────────────────── */
.produto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.produto-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--green);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition);
}

.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.produto-card:hover::before { transform: scaleY(1); }

.produto-card-icon {
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--green);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.produto-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.produto-card p {
    font-size: .9rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.produto-card .card-link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.produto-card .card-link:hover { color: var(--green-dark); }

/* ── Cards – Segmentos ───────────────────────────────────────── */
.segmento-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.segmento-card:hover {
    background: rgba(53,168,47,.15);
    border-color: rgba(53,168,47,.4);
    transform: translateY(-3px);
}

.segmento-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(53,168,47,.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.segmento-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}

.segmento-card p {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    margin: 0;
    line-height: 1.5;
}

/* ── Feature / Por que Isomac ────────────────────────────────── */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-body h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem;
}

.feature-body p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Sobre section image ─────────────────────────────────────── */
.sobre-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sobre-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sobre-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(53,168,47,.5);
}

.sobre-img-badge strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.sobre-img-badge span {
    font-size: .75rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 300px; height: 300px;
    border: 60px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    border: 50px solid rgba(255,255,255,.05);
    border-radius: 50%;
}

.cta-section .cta-inner { position: relative; z-index: 2; }

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}

.cta-section p {
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

/* ── Contato Page ────────────────────────────────────────────── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .15rem;
}

.contact-info-item p, .contact-info-item a {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a:hover { color: var(--green); }

/* ── Product Page Content ────────────────────────────────────── */
.product-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .5rem 0;
    color: var(--text-body);
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
}

.product-features-list li:last-child { border-bottom: none; }

.product-features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.product-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.specs-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-left: 4px solid var(--green);
}

.specs-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.application-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin: .2rem;
    border: 1px solid var(--border);
}

/* ── 404 ─────────────────────────────────────────────────────── */
.page-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

.page-404 .code-404 {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 9rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    opacity: .25;
}

.page-404 h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin: -.5rem 0 .75rem;
}

/* ── Quem Somos ──────────────────────────────────────────────── */
.timeline-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1.8rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item:last-child::after { display: none; }

.timeline-dot {
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .3rem;
}

.timeline-item p {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); }

.footer-top { padding: 4rem 0 3rem; }

.footer-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-desc {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
}

.footer-social { display: flex; gap: .6rem; }

.social-btn {
    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: background var(--transition), color var(--transition);
}

.social-btn:hover {
    background: var(--green);
    color: #fff;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: .45rem; }

.footer-links a {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--green-bright);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    margin-bottom: .9rem;
    line-height: 1.5;
}

.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--green-bright); }

.footer-contact-list a {
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--green-bright); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.2rem 0;
}

.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }

.footer-bottom a {
    color: rgba(255,255,255,.4);
    font-size: .82rem;
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--green-bright); }

/* ── WhatsApp Float Button ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: .75rem 1.2rem .75rem .9rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: wf-pop .6s ease 1s both;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.wf-label {
    font-size: .88rem;
    letter-spacing: .02em;
    white-space: nowrap;
}

@keyframes wf-pop {
    from { opacity: 0; transform: translateY(20px) scale(.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Animations ──────────────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-20px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(20px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ── Map embed ───────────────────────────────────────────────── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 360px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-green { color: var(--green) !important; }
.bg-green   { background: var(--green) !important; }
.fw-800     { font-weight: 800 !important; }

/* ── Contact Form Card ───────────────────────────────────────── */
.form-section {
    background-color: var(--gray-bg);
    background-image: radial-gradient(circle, rgba(53,168,47,.13) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    padding: 5rem 0;
}
.form-card {
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--green);
    box-shadow: 0 4px 8px rgba(10,30,10,.04), 0 20px 56px rgba(10,30,10,.10);
}
.form-card-header {
    padding: 2.5rem 2.75rem 1.75rem;
    border-bottom: 1px solid #e6ebe4;
}
.form-card-body {
    padding: 2rem 2.75rem 2.75rem;
}
.form-label-eps {
    display: block;
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #607859;
    margin-bottom: .5rem;
}
.form-card .form-control,
.form-card .form-select {
    border: 1.5px solid #cdd6ca;
    border-radius: 4px;
    background-color: #f7faf6;
    color: var(--dark);
    font-size: .9375rem;
    padding: .65rem .9rem;
    transition: border-color .18s, box-shadow .18s, background-color .18s;
}
.form-card .form-select { padding-right: 2.5rem; }
.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: var(--green);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(53,168,47,.14);
}
.form-card .form-control.is-invalid,
.form-card .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff;
}
.form-card .form-control.is-valid,
.form-card .form-select.is-valid {
    border-color: var(--green);
    background-color: #f7faf6;
}
.form-card .form-control.is-invalid,
.form-card .form-control.is-valid { background-image: none; }
.form-char-pill {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e6ebe4;
    color: #8aa283;
    transition: background .2s, color .2s;
}
.form-char-pill.complete {
    background: rgba(53,168,47,.15);
    color: var(--green-dark);
}
.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.form-disclaimer {
    font-size: .78rem;
    color: #8fa689;
    line-height: 1.6;
}
.form-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 2rem;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid #e6ebe4;
}
.form-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7a9173;
}
.form-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .site-nav .dropdown-menu { background: rgba(0,0,0,.35); border: none; border-top: 2px solid rgba(93,212,88,.35); animation: none; }
    .site-nav .dropdown-item::before { display: none; }
    .site-nav .dropdown-item:hover { padding-left: 1.1rem; }
    .hero-section { min-height: 75vh; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .stat-item:last-child { border-bottom: none; }
    .sobre-img-wrap img { height: 300px; }
}

@media (max-width: 767px) {
    .section-light, .section-gray, .section-dark, .section-green { padding: 3.5rem 0; }
    .hero-section { min-height: 60vh; }
    .hero-section::after { display: none; }
    .hero-content { padding: 3rem 1.25rem; }
    .bh-content { padding-left: 1.25rem; padding-right: 1.25rem; }
    .whatsapp-float { padding: .75rem; border-radius: 50%; }
    .wf-label { display: none; }
    .breadcrumb-hero { min-height: 200px; }
    .product-img-main img { height: 250px; }
    .form-section { padding: 3rem 0; }
    .form-card-header { padding: 1.75rem 1.25rem 1.25rem; }
    .form-card-body   { padding: 1.5rem 1.25rem 2rem; }
    .form-submit-row  { flex-direction: column; align-items: stretch; }
    .form-submit-row .btn-primary-green { justify-content: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
