/* ==========================================================================
   DESIGN SYSTEM - OTEMOL BRASIL
   ========================================================================== */

   :root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-light: #f8f9fa;
    --primary-dark: #025503;   /* Verde Escuro */
    --primary-light: #92d803;  /* Verde Claro */
    --accent: #fefc0b;         /* Amarelo */
    --text-dark: #121e12;      /* Texto Escuro */
    --text-muted: #526352;
    --border-color: rgba(2, 85, 3, 0.08);
    
    /* Typography */
    --font-title: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 140px;
    
    /* Effects */
    --shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 16px 40px rgba(2, 85, 3, 0.05);
    --shadow-hover: 0 20px 48px rgba(2, 85, 3, 0.1);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.text-center {
    text-center: center;
    text-align: center;
}

/* ==========================================================================
   UI COMPONENTS
   ========================================================================== */

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(2, 85, 3, 0.06);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(2, 85, 3, 0.12);
}

.badge-warning {
    background-color: rgba(254, 252, 11, 0.12);
    color: #8c8200;
    border-color: rgba(254, 252, 11, 0.4);
}

.badge-success {
    background-color: rgba(146, 216, 3, 0.12);
    color: #4f7800;
    border-color: rgba(146, 216, 3, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(146, 216, 3, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: rgba(2, 85, 3, 0.04);
    transform: translateY(-2px);
}

.btn-secondary-white {
    background-color: transparent;
    border-color: var(--bg-primary);
    color: var(--bg-primary);
}

.btn-secondary-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-warning {
    background-color: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(254, 252, 11, 0.3);
}

.btn-warning:hover {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* ==========================================================================
   NAVIGATION BAR (HEADER)
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 130px;
    width: auto;
    max-height: 130px;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.footer-logo-img {
    width: 140px;
    height: auto;
    max-height: 150px;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.logo-text-accent {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-item:hover {
    color: var(--primary-dark);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 0 40px;
}

.mobile-nav-item {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.mobile-cta {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

/* Menu Toggle Anim */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 90px;
    background-color: #ffffff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg-banner {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
}

.hero-content {
    max-width: 540px;
}

.hero-media {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    line-height: 1.18;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    max-width: 460px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--primary-dark);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-hero {
    width: 100%;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(2, 85, 3, 0.15);
}

/* Media/Image Container */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: visible;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.media-accent-box {
    position: absolute;
    top: -25px;
    right: -25px;
    background-color: var(--primary-dark);
    color: var(--bg-primary);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(2, 85, 3, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 10;
    border-left: 5px solid var(--primary-light);
    
    /* Delayed arrival animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.reveal.active .media-accent-box {
    opacity: 1;
    transform: translateY(0);
    animation: floatAnimation 3.5s ease-in-out infinite alternate;
    animation-delay: 1.4s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

.accent-number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 4px;
}

.accent-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ==========================================================================
   2. SEÇÃO O PROBLEMA
   ========================================================================== */

.problem-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background-color: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 77, 77, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.error-icon {
    background-color: rgba(255, 77, 77, 0.08);
}

.problem-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.problem-quote-box {
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding: 40px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--primary-dark);
}

.problem-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.quote-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-light);
    margin: 0 auto 24px auto;
}

.quote-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* ==========================================================================
   3. SEÇÃO SOBRE A OTEMOL
   ========================================================================== */

.about-section {
    background-color: var(--bg-primary);
}

.about-container {
    display: grid;
    grid-template-columns: 0.90fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-text-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-left: 3px solid var(--primary-light);
    padding-left: 16px;
    margin: 30px 0;
}

.about-pillars {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(146, 216, 3, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background-color: var(--primary-light);
    color: var(--text-dark);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(146, 216, 3, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.experience-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.2rem;
}

.experience-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ==========================================================================
   4. SEÇÃO DESTAQUE DO PRODUTO — LIMA GREEN
   ========================================================================== */

.product-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 85, 3, 0.15);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-emoji {
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-center-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-bg-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(146, 216, 3, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.product-showcase-img {
    width: 85%;
    max-width: 320px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
    transition: var(--transition-smooth);
}

.product-showcase-img:hover {
    transform: scale(1.03) translateY(-5px);
}

/* PDF Downloads Buttons */
.product-downloads-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(2, 85, 3, 0.12);
    transition: var(--transition-smooth);
}

.btn-pdf-download svg {
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.btn-pdf-download:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 85, 3, 0.18);
}

.btn-pdf-download:hover svg {
    transform: translateY(2px);
    color: var(--primary-dark);
}

.benefit-cta-box {
    background-color: var(--primary-dark);
    color: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.benefit-cta-box p {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ==========================================================================
   5. SEÇÃO SEGMENTOS ATENDIDOS
   ========================================================================== */

.segments-banner-section {
    position: relative;
    background-image: url('img/banner_4_esp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-light);
    padding: 30px 0 150px 0;
    overflow: hidden;
}

.segments-bg-overlay {
    display: none;
}

.segments-inner-container {
    position: relative;
    z-index: 2;
}

.segments-header-box {
    max-width: 840px;
    margin: 10px auto 670px auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.segments-header-box .section-title {
    font-size: 2.3rem;
    color: var(--primary-dark);
    margin-top: 12px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.segments-header-box .section-subtitle {
    font-size: 1.08rem;
    color: var(--text-dark);
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.8);
}

.segments-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px 15px 40px 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 85, 3, 0.12);
}

.segment-col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 30px 20px;
    position: relative;
}

.segment-col-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 70px;
    bottom: 20px;
    width: 1px;
    background-color: rgba(2, 85, 3, 0.12);
}

.segment-floating-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(2, 85, 3, 0.25);
    margin-bottom: 20px;
    border: 4px solid #ffffff;
    transition: var(--transition-smooth);
}

.segment-col-item:hover .segment-floating-icon {
    transform: translateY(-6px) scale(1.05);
    background-color: var(--primary-light);
    color: var(--text-dark);
}

.segment-col-title {
    font-family: var(--font-title);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.segment-col-divider {
    width: 36px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
    margin-bottom: 14px;
}

.segment-col-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.segment-card h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.segment-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   6. SEÇÃO DIFERENCIAL
   ========================================================================== */

.differentials-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.differentials-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.differentials-text-column {
    position: sticky;
    top: 120px;
}

.differentials-list-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.differential-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.diff-check {
    width: 30px;
    height: 30px;
    background-color: rgba(2, 85, 3, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-content h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.diff-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   7. SEÇÃO ESG E SUSTENTABILIDADE
   ========================================================================== */

.esg-section {
    background-color: var(--bg-primary);
    position: relative;
}

.esg-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.esg-content .section-title {
    margin-bottom: 30px;
}

.esg-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.esg-highlights {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.esg-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    position: relative;
}

.esg-highlight-item:first-child::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: var(--border-color);
}

.esg-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(146, 216, 3, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg-highlight-text h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.esg-highlight-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.esg-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 1.1 / 1;
}

.esg-seal {
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: var(--bg-primary);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.esg-seal span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ==========================================================================
   8. SEÇÃO PROVAS SOCIAIS
   ========================================================================== */

.social-proof-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-container {
    text-align: center;
    margin-bottom: 70px;
}

.logos-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.logos-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 35px 0;
    margin-top: 15px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.logos-carousel-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: infiniteMarquee 22s linear infinite;
    will-change: transform;
}

.logos-carousel-wrapper:hover .logos-carousel-track {
    animation-play-state: paused;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    position: relative;
    z-index: 1;
}

.logo-slide img {
    max-width: 320px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    cursor: pointer;
}

.logo-slide:hover {
    z-index: 10;
}

.logo-slide:hover img {
    filter: opacity(1) drop-shadow(0 10px 25px rgba(0,0,0,0.15));
    transform: scale(1.20);
}

@keyframes infiniteMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.quote-icon {
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 24px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.author-company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Certifications Seals */
.seals-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.seal-placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 2px solid var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.seal-item h4 {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ==========================================================================
   9. CTA FINAL & FORM
   ========================================================================== */

.cta-final-section {
    background-color: var(--bg-primary);
}

.cta-final-box {
    background-color: var(--primary-dark);
    color: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(2, 85, 3, 0.18);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
}

.cta-final-content {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-final-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-final-text {
    font-size: 1.15rem;
    margin-bottom: 16px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-final-subtext {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-final-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-final {
    width: 100%;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Form Container Inside CTA Section */
.cta-final-form-wrapper {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    padding: 60px 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-final-form-wrapper h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-final-form-wrapper p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(2, 85, 3, 0.18);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-primary);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(2, 85, 3, 0.1);
}

/* ==========================================================================
   10. RODAPÉ INSTITUCIONAL (FOOTER)
   ========================================================================== */

.footer {
    background-color: #0b150b;
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    padding-top: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-text.text-white {
    color: var(--bg-primary);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--primary-light);
    color: var(--text-dark);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-title);
    color: var(--bg-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact p {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   NEW PARALLAX BANNER SECTION
   ========================================================================== */

.parallax-section {
    position: relative;
    background-image: url('img/fundo_bg_2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay for text contrast */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 21, 11, 0.75); /* Dark overlay */
    z-index: 1;
}

.parallax-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.parallax-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: #94d836; /* Headline color specified by user */
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.parallax-subtitle {
    font-size: 1.3rem;
    color: var(--bg-primary); /* White text */
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Mobile smooth scrolling */
        padding: 80px 20px;
    }
    
    .parallax-title {
        font-size: 2rem;
    }
    
    .parallax-subtitle {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS (IntersectionObserver Support)
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .segments-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    .segment-col-item:not(:last-child)::after {
        display: none;
    }
    
    .differentials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .differentials-text-column {
        position: relative;
        top: 0;
    }
    
    .cta-final-box {
        grid-template-columns: 1fr;
    }
    
    .cta-final-form-wrapper {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .logo-img {
        height: 65px;
        max-height: 65px;
    }

    html {
        font-size: 15px;
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding-top: calc(var(--header-height) + 25px);
        padding-bottom: 40px;
        min-height: auto;
        flex-direction: column;
    }
    
    .hero-container {
        display: block;
        text-align: center;
    }
    
    .hero-media {
        display: none;
    }
    
    .hero-bg-banner {
        display: block;
        position: relative;
        width: 100%;
        height: 260px;
        background-image: url('img/banner_home_smart.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 30px;
        border-radius: var(--radius-md);
    }
    
    .hero-bg-banner::before {
        display: none;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .media-accent-box {
        top: -15px;
        right: 10px;
        bottom: auto;
        left: auto;
        padding: 15px 20px;
    }
    
    .experience-badge {
        left: 10px;
        bottom: -15px;
        right: auto;
        padding: 15px 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-pillars {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-center-media {
        order: -1;
    }
    
    .segments-banner-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 30px 20px;
    }
    
    .segments-header-box {
        margin: 0 auto 30px auto;
        padding: 0 10px;
    }
    
    .segments-columns-wrapper {
        margin-top: 20px;
    }
    
    .segments-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    
    .esg-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .esg-highlights {
        flex-direction: column;
        gap: 24px;
    }
    
    .esg-highlight-item:first-child::after {
        display: none;
    }
    
    .esg-media {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .esg-seal {
        left: 10px;
        top: -15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-final-content {
        padding: 40px 24px;
    }
    
    .cta-final-form-wrapper {
        padding: 40px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        width: 170px;
        margin: 0 auto 15px auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .segments-columns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .differentials-list-column {
        grid-template-columns: 1fr;
    }
    
    .seals-container {
        gap: 30px;
    }
}
