:root {
    --primary-green: #0a5c2e;
    --accent-orange: #f15a24;
}

html {
    scroll-behavior: smooth;
}

.bg-agro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&q=80&w=1920');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #f15a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.brand-pai {
    display: flex;
    align-items: center;
    grid-area: 2rem;
}

.log-brand {
    width: 48px;
    height: 48px;
}

.header-dentro-do-header {
    background-color: #0a5c2e;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

.header-esquerda {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 13rem;
}

.header-direita {
    margin-right: 13rem;
}

@media (max-width: 768px) {
    .header-dentro-do-header {
        display: none;
    }
}