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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-surface);
}

.mt-5 {
    margin-top: 3rem;
}

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

.btn--primary {
    background-color: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    border-color: var(--text-heading);
    color: var(--text-heading);
}

.btn--secondary:hover {
    background-color: var(--text-heading);
    color: #fff;
}

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

.btn--outline:hover {
    background-color: var(--primary-light);
}

.btn--white {
    background-color: #fff;
    color: var(--primary);
}

.btn--white:hover {
    background-color: #f0f0f0;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
}

.header.scrolled {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header.scrolled .logo img {
    height: 85px;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: var(--text-body);
    font-size: 0.95rem;
}

.nav__link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
}

/* Hero */
.hero {
    padding: calc(var(--header-height) + 2rem) 0 8rem;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-surface) 100%);
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    /* Alinhar no topo */
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero__badge svg {
    flex-shrink: 0;
    stroke: var(--primary-hover);
}

.hero__title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__trust {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero__trust p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.trust-icons {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    /* Limitar largura */
    position: relative;
    margin-top: 1rem;
}

.brands-scroll {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands-track {
    display: flex;
    gap: 3rem;
    animation: scroll-brands 25s linear infinite;
    width: fit-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Brand Text Styles */
.brand-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-text:hover {
    opacity: 1;
    color: var(--primary);
}

/* Hero Stats Cards - Abaixo da imagem */
.hero__stats-bottom {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #fff5ed 0%, #ffffff 100%);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.15);
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    stroke: var(--primary);
    width: 40px;
    height: 40px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%);
    /* Solid black for consistency */
    opacity: 0.7;
}

.trust-icons:hover .brand-logo {
    opacity: 1;
}

.hero__image-wrapper {
    position: relative;
    padding-top: 3rem;
    /* Alinhar com o título h1 */
}

.hero__image-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background-color: #eee;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero__image-placeholder:hover .hero__img {
    transform: scale(1.05);
}

.hero__overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 320px;
    animation: slideUp 1s ease-out forwards;
    border: 2px solid rgba(255, 136, 0, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.card-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-content {
    flex: 1;
}

.card-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Centralizar conteúdo */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--primary);
    line-height: 1;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin: 0;
}

/* Agro Backgrounds */
.section--agro-bg {
    position: relative;
    background: var(--bg-surface);
    overflow: hidden;
}

.section--agro-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.coverage {
    background-image: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('../img/bg/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Coverage */
.coverage__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.states-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.states-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.map-placeholder {
    background: #f1f5f9;
    border-radius: var(--radius-lg);
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.dots-grid {
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 30px 30px;
    transform: rotate(15deg);
    opacity: 0.5;
}

.map-label {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.map-label::before {
    content: '📍';
    font-size: 1.5rem;
}

/* About Section */
.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transition: var(--transition);
}

.about__image:hover .about__img {
    transform: scale(1.03);
}

.about__content h2 {
    margin-bottom: 2rem;
}

.about__content p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
    font-size: 1.1rem;
}

/* Values Grid - Cards abaixo do texto */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about__features li {
    background: var(--bg-surface);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-sm);
    border-top: 4px solid var(--primary);
    font-size: 0.9rem;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    /* Ensure full width in grid */
}

.feature-icon {
    /* Reuse consistent icon style */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about__features li p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.4;
}

.about__features li strong {
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

/* Before/After Carousel Section */
.before-after {
    background: var(--bg-surface);
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
}

.before-after-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.image-box {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.image-label--before {
    background: #ff6b6b;
    color: white;
}

.image-label--after {
    background: #51cf66;
    color: white;
}

.comparison-description {
    padding: 2rem;
    text-align: center;
}

.comparison-description h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.comparison-description p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.carousel-btn svg {
    stroke: white;
    transition: var(--transition);
}

.carousel-btn--prev {
    left: 0;
}

.carousel-btn--next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--accent);
}

@media (max-width: 968px) {
    .about__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__image {
        order: -1;
    }
}

/* Map Styles */
/* Map Styles */
.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    aspect-ratio: 220000/194010;
    /* Match SVG viewBox aspect ratio */
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the container exactly */
    display: block;
    padding: 0;
}

.map-pins-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #ff3b30;
    /* Bright Red for visibility */
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
    transform: translate(-50%, -50%);
    /* Center pin on coordinate */
    z-index: 20;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    border-radius: 50%;
    background-color: #ff3b30;
    opacity: 0.4;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Coordinates based on Lat/Lon mapping to map bounds */
.pin-mt {
    top: 45%;
    left: 42%;
}

/* Mato Grosso - laranja, centro-oeste */
.pin-pa {
    top: 26%;
    left: 48%;
}

/* Pará - verde, norte */
.pin-to {
    top: 42%;
    left: 56%;
}

/* Tocantins - verde, centro */
.pin-ma {
    top: 28%;
    left: 65%;
}

/* Maranhão - vermelho, nordeste */
.pin-pi {
    top: 34%;
    left: 68%;
}

/* Piauí - vermelho, nordeste */
.pin-ba {
    top: 44%;
    left: 72%;
}

/* Bahia - vermelho, leste */
.pin-go {
    top: 53%;
    left: 55%;
}

/* Goiás - centro-oeste */


.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Reduce min-width for better mobile fit */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.gallery-item-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 136, 0, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-pos-top {
    object-position: top;
}

.img-pos-center {
    object-position: center;
}

.img-pos-bottom {
    object-position: bottom;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFEDD5;
    /* Orange-100 placeholder */
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.7) 0%, rgba(230, 119, 0, 0.75) 100%), url('../img/bg/harvest_soy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efeito parallax opcional para mais elegância */
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(255, 136, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.cta-banner__decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-banner__decor:nth-child(1) {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    animation: floatShape 12s infinite alternate ease-in-out;
}

.cta-banner__decor:nth-child(2) {
    width: 280px;
    height: 280px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: floatShape 10s infinite alternate-reverse ease-in-out;
}

.cta-banner__glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 4.5rem 2rem;
    width: 100%;
    max-width: 850px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-banner h3 {
    color: white;
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.cta-banner p {
    color: white;
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 500;
}

.cta-banner .btn {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.cta-banner .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 20px) rotate(10deg);
    }
}

/* Footer */
.footer {
    background-color: var(--bg-footer);
    color: #fff;
    padding: 6rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FFB800);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.logo-footer {
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer__col p {
    color: #9CA3AF;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.contact-list li {
    margin-bottom: 0.8rem;
    color: #D1D5DB;
    font-size: 0.95rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6B7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: var(--transition);
}

.developer-credit:hover {
    opacity: 1;
}

.developer-credit img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Deixa o logo branco para combinar com o rodapé escuro */
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #00FF00;
    border: 2px solid white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--left {
    transform: translateX(-40px);
}

.reveal--right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__content>* {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    :root {
        --header-height: 100px;
        --header-scrolled-height: 100px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .logo img {
        height: 100px;
    }

    .header.scrolled .logo img {
        height: 80px;
    }

    .hero__container,
    .coverage__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        flex-direction: column;
        overflow: hidden;
        transition: height 0.4s ease;
        padding: 0;
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        /* Ensure on top */
    }

    .nav.active {
        height: calc(100vh - var(--header-height));
        padding: 2rem 0;
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav__list li {
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        text-align: center;
    }

    .nav .btn {
        margin: 2rem;
        width: calc(100% - 4rem);
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .bar {
        width: 30px;
        height: 2px;
        background-color: var(--text-heading);
        transition: var(--transition);
    }

    .mobile-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    /* Hero Section - Mobile Complete Fix */
    .hero {
        padding: calc(var(--header-height) + 1rem) 0 4rem;
        min-height: auto;
    }

    .hero__container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
        display: flex !important;
        flex-direction: column-reverse;
        /* Imagem após conteúdo no HTML, mas mostra primeiro */
    }

    .hero__content {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 2;
        /* Conteúdo vem depois da imagem */
    }

    .hero__badge {
        margin-bottom: 1rem;
        display: inline-flex !important;
    }

    .hero__title {
        text-align: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero__description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero__image-wrapper {
        padding-top: 0 !important;
        order: 1;
        /* Imagem vem primeiro */
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero__image-placeholder {
        aspect-ratio: 16/9;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .hero__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__trust {
        order: 3;
        /* Trust vem por último */
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
    }

    .hero__trust p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .trust-icons {
        max-width: 100%;
        justify-content: center;
    }

    .brands-scroll {
        justify-content: center;
    }

    /* Hero Stats - Stack vertically on mobile */
    .hero__stats-bottom {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
    }

    .stat-card {
        width: 100%;
    }


    /* Features Grid */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Values Grid */
    .values__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .comparison-images {
        grid-template-columns: 1fr;
    }

    .image-box {
        aspect-ratio: 16/9;
    }

    /* Gallery Grid */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* CTA */
    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }
}


/* Tablet adjustments */
@media (max-width: 768px) {

    /* Hero adjustments */
    .hero {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero__image-placeholder {
        border-radius: var(--radius-md);
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll indicator on mobile */
    }

    .btn--lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    /* Stats cards - smaller on mobile */
    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .stat-icon svg {
        width: 32px;
        height: 32px;
    }

    /* About image grid */
    .about__image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Carousel dots */
    .carousel-dots {
        margin-top: 1.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --header-height: 80px;
        --header-scrolled-height: 70px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo img {
        height: 70px;
    }

    .header.scrolled .logo img {
        height: 60px;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero__badge svg {
        width: 14px;
        height: 14px;
    }

    .hero__title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Brands scroll */
    .brands-scroll {
        max-width: 100%;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    /* Stats - even smaller */
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
        justify-content: center;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Value cards */
    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .comparison-description {
        padding: 1.5rem;
    }

    .comparison-description h3 {
        font-size: 1.25rem;
    }

    .comparison-description p {
        font-size: 0.9rem;
    }

    .image-label {
        top: 10px;
        left: 10px;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Gallery items */
    .gallery-item {
        padding: 0;
    }

    .gallery-info {
        padding: 1.25rem;
    }

    .gallery-info h4 {
        font-size: 1.1rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }

    /* CTA Banner */
    .cta-banner h3 {
        font-size: 1.25rem;
    }

    .cta-banner .btn {
        width: 100%;
    }

    /* Coverage states list */
    .states-list {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__container {
        gap: 2rem;
    }

    .footer__col h4 {
        font-size: 1rem;
    }

    /* WhatsApp float */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}