:root {
    --brand-orange: #fa8200;
    --brand-teal: #1e8296;
    --brand-darkSection: #0a0a0a;
    --brand-darkCard: #161616;
    --product-green: #004d00;
}

body {
    background-color: #ffffff;
    color: #1f2937;
    margin: 0;
    padding: 0;
    animation: fadeIn 0.6s ease-out;
}

/* SAMBA GROOVE BRANDING RULE: NO ITALICS ALLOWED */
* {
    font-style: normal !important;
}

.bg-brand-darkSection { background-color: var(--brand-darkSection); }
.bg-brand-darkCard { background-color: var(--brand-darkCard); }
.text-brand-orange { color: var(--brand-orange); }
.border-brand-orange { border-color: var(--brand-orange); }

/* Fix for double arrows in select elements */
.lang-selector {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
}

.lang-selector::-ms-expand {
    display: none !important;
}

/* Product Card Micro-interactions */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.product-card img {
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Enhanced Mobile Menu Overlay */
#mobileMenuOverlay {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

#mobileMenuOverlay.active {
    transform: translateX(0);
}

/* Glass Shimmer Hover Effect */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.product-card:hover::after {
    left: 150%;
    transition: left 0.7s ease-in-out;
}


/* Magnetic-style Button Reveal */
.bg-brand-orange, .bg-brand-teal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-brand-orange::before, .bg-brand-teal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.bg-brand-orange:hover::before, .bg-brand-teal:hover::before {
    width: 300%;
    height: 300%;
}

/* Stat Counter Utility */
.count-up {
    display: inline-block;
    transition: transform 0.3s ease;
}

.count-up.active {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Back to Top Button Polish */
#backToTop {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Global Footer Refinements */
[data-purpose="site-footer"] {
    position: relative;
    z-index: 10;
}

[data-purpose="site-footer"] .group:hover {
    box-shadow: 0 4px 12px rgba(255, 126, 0, 0.2);
}

/* Staggered Entrance Utility */
[data-aos].aos-stagger-1 { transition-delay: 100ms; }
[data-aos].aos-stagger-2 { transition-delay: 200ms; }
[data-aos].aos-stagger-3 { transition-delay: 300ms; }
[data-aos].aos-stagger-4 { transition-delay: 400ms; }

/* Cinematic Text Reveal - Animation removed as requested */
/* .hero-reveal handled via standard transitions now */

/* Depth Hover Logic */
.product-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

.product-card:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(2deg) !important;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 
                0 18px 36px -18px rgba(0, 0, 0, 0.3), 
                0 -12px 36px -8px rgba(0, 0, 0, 0.025) !important;
}

/* Premium Button "Magnetic" Shift */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.magnetic-btn:hover {
    transform: translate(5px, -5px) scale(1.05);
}

/* Header Slide Down Entrance */
@keyframes headerEntrance {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.header-animate {
    animation: headerEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Procedures Link Animation */
.procedures-line {
    position: relative;
}

.procedures-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, #fa8200, transparent);
    z-index: -1;
    transition: height 1.5s ease-in-out;
}

.aos-animate .procedures-line::before {
    height: 100%;
}

@media (max-width: 768px) {
    [data-purpose="site-footer"] .order-1 { order: 1 !important; }
    [data-purpose="site-footer"] .order-2 { order: 2 !important; }
    [data-purpose="site-footer"] .order-3 { order: 3 !important; }
}
/* Premium Product Design System */
:root {
    --product-green: #004d00; /* Dark Green from reference */
    --product-orange: #fa8200; /* Brand Orange */
    --product-white: #ffffff;
    --product-gray-light: #f3f4f6;
    --product-gray-dark: #1f2937;
}

.bg-product-green { background-color: var(--product-green); }
.text-product-orange { color: var(--product-orange); }
.border-product-orange { border-color: var(--product-orange); }

/* Technical Specifications Table */
.spec-table th {
    background-color: var(--product-gray-light);
    color: var(--product-gray-dark);
    text-align: left;
    padding: 1rem;
    font-weight: 700;
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.spec-table tr:hover {
    background-color: #f9fafb;
}

/* Strategic Advantages Grid */
.advantage-card {
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--product-orange);
}

/* Map Hotspots */
.map-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--product-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(250, 130, 0, 0.7);
    animation: hotspot-pulse 2s infinite;
}

@keyframes hotspot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 130, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250, 130, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 130, 0, 0); }
}

/* Market Intelligence Section (Elite v3 - Pixel Perfect Refinement) */
.market-intelligence-card {
    background: #000000;
    border-radius: 12px;
    padding: 0;
    position: relative;
}

.market-leaders-header {
    color: var(--brand-orange);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.market-row {
    margin-bottom: 1.5rem;
}

.market-row-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #a1a1aa;
    letter-spacing: 0.05em;
}

.market-row.highlight .market-row-labels {
    color: #ffffff;
}

.market-progress-track {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.08); /* Mais sutil */
    border-radius: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.market-progress-fill {
    height: 100%;
    border-radius: 100px;
    background: #27272a; /* Zinc 800 para itens secundários */
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-row.highlight .market-progress-fill {
    background: var(--brand-orange);
    box-shadow: 0 0 20px rgba(250, 130, 0, 0.45);
}

/* Export Cycle Integrated Card */
.export-cycle-container {
    background: #09090b; /* Quase preto para profundidade */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.cycle-header-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.cycle-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

/* Export Cycle Horizontal Pills */
.export-cycle-pills {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    margin-bottom: 2.5rem;
}

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

.pill-label {
    font-size: 10px;
    font-weight: 900;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-box {
    width: 100%;
    height: 38px;
    background: #18181b;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pill-box.sowing { background: var(--brand-orange); }
.pill-box.harvest { background: #ea580c; } /* Darker orange/red */

.cycle-description {
    font-size: 12px;
    line-height: 1.6;
    color: #71717a;
    font-weight: 500;
}

.cycle-legend-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 1.5rem;
}

.legend-item-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legend-indicator {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-indicator.sowing { background: var(--brand-orange); }
.legend-indicator.harvest { background: var(--brand-teal); }
.legend-indicator.continuous { background: rgba(30, 130, 150, 0.4); border: 1px solid var(--brand-teal); }

[data-aos="fade-up-custom"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
}

[data-aos="fade-up-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}



