/* ==========================================
   VARIABLES - Cores e Tokens
   ========================================== */
:root {
    --lemon-green: #cdd00d;
    --dark-green: #055303;
    --black: #000000;
    --white: #ffffff;
    --gray: #9b9a9a;
    --light-beige: #f3dfbe;
    --light-cream: #fff6e8;
    --dark-overlay: rgba(0, 0, 0, 0.3);
    --shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.2);
    --shadow-light: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
    --shadow-small: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   RESET - Estilos Base
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.4;
}

/* ==========================================
   CONTAINERS - Centralizados
   ========================================== */
[class$="-container"] {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

#page-quem-somos a[href="quem-somos.html"] {
    font-weight: bold;
    text-decoration: underline;
    color: var(--dark-green);
}

#page-produtos a[href="produtos.html"] {
    font-weight: bold;
    text-decoration: underline;
    color: var(--dark-green);
}

#page-industria a[href="para-sua-industria.html"] {
    font-weight: bold;
    text-decoration: underline;
    color: var(--dark-green);
}

#page-negocio a[href="para-seu-negocio.html"] {
    font-weight: bold;
    text-decoration: underline;
    color: var(--dark-green);
}

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

/* ==========================================
   HEADER - Cabeçalho
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    gap: 10px;
    position: relative;
}

.logo {
    width: 210px;
    height: 60px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navigation {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    padding-left: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-green);
}

.btn-cotacao {
    background-color: var(--lemon-green);
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    box-shadow: var(--shadow-small);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    margin-left: 40px;
    flex-shrink: 0;
}

.btn-cotacao:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
}

.btn-cotacao img {
    width: 22px;
    height: 22px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    z-index: 101;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -4px)
}

/* ==========================================
   BANNER PRINCIPAL - CAROUSEL (SWIPER)
   ========================================== */
.banner-principal {
    width: 100%;
    height: 760px;
    position: relative;
    overflow: hidden;
}

.banner-principal .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.banner-principal .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: #d5cbbe;
    background-size: contain;
    background-position: bottom center;
}

.banner-item {
    width: 100%;
    height: 100%;
    background-size:contain;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: normal;
    justify-content: center;
    position: relative;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 784px;
    padding-top: 60px;
}

.banner-content h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
    color: var(--black);
    text-align: left;
}

/* BANNER CAROUSEL NAVIGATION - SWIPER */
.banner-principal .swiper-button-next,
.banner-principal .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s ease;
}

.banner-principal .swiper-button-next:hover,
.banner-principal .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.banner-principal .swiper-button-next::after,
.banner-principal .swiper-button-prev::after {
    display: none;
}

.banner-principal .swiper-button-next::before,
.banner-principal .swiper-button-prev::before {
    content: '';
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

.banner-principal .swiper-button-prev::before {
    background-image: url('../images/icone-seta-anterior-carousel.svg');
}

.banner-principal .swiper-button-next::before {
    background-image: url('../images/icone-seta-proxima-carousel.svg');
}

/* BANNER CAROUSEL PAGINATION - SWIPER */
.banner-principal .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-principal .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-principal .swiper-pagination-bullet-active {
    background-color: var(--white);
}

section{
    overflow: hidden;
}

/* ==========================================
   SEÇÃO EMPRESA
   ========================================== */
.section-empresa {
    background-color: var(--white);
    padding: 100px 10px;
}

.txt-header-empresa {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txt-header-empresa img {
    width: 140px;
}

.image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-overlay);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.empresa-contact-whatsapp {
    background-color: var(--lemon-green);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 180px;
    text-align: center;
    margin: 60px 0 0;
    box-shadow: var(--shadow-small);
}

.empresa-contact-whatsapp {
    grid-column: 1;
    grid-row: 2;
}

.empresa-contact-whatsapp img {
    width: 60px;
    height: 60px;
}

.empresa-contact-whatsapp p,
.empresa-contact-email p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.contact-link {
    text-decoration: underline;
}

.empresa-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
}

.empresa-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-green);
}

.empresa-content h2 {
   font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    color: var(--black);
}

.empresa-icon {
    position: absolute;
    width: 184px;
    height: 184px;
}

.info-empresa {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.empresa-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    width: 50%;
    z-index: 1;
}

.empresa-image {
    width: 50%;
}

.empresa-image img {
    width: 100%;
    margin-left: -100px;
}

.empresa-description p {
    margin-bottom: 16px;
}

.empresa-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   SEÇÃO NÚMEROS
   ========================================== */
.section-numeros {
position: relative;
    width: 100%;
    height: auto;
    background: url(../images/semente-background-bege.svg) var(--light-cream) no-repeat center bottom;
    padding: 110px 10px 60px;
    margin-bottom: 40px;
    overflow: initial !important;
}

.semente-naturais-decor {
    width: 70%;
    margin: -200px auto 0;
}

.numeros-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

.numeros-decoration {
    position: absolute;
    top: -514px;
    left: 244px;
    width: 1574px;
    height: 1574px;
    z-index: 1;
}

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

.numeros-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
}

.numeros-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.numero-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 10px;
    color: var(--black);
}

.numero-valor {
    font-size: 60px;
    font-weight: 600;
    line-height: 50px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.numero-unidade {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.numero-descricao {
    font-size: 16px;
    font-weight: 400;
    line-height: initial;
}

.numeros-image {
    position: absolute;
    bottom: 0;
    left: 431px;
    width: 940.437px;
    height: 244px;
    object-fit: cover;
    z-index: 2;
}

/* ==========================================
   SEÇÃO CTA (Call To Action)
   ========================================== */
.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--white);
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 40px;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--lemon-green);
    color: var(--dark-green);
    box-shadow: var(--shadow-small);
    height: 60px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
}

.btn-primary img {
    width: 30px;
    height: 30px;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-green);
    border: 3px solid var(--dark-green);
    height: 60px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: var(--dark-green);
    color: var(--white);
}

.cta-numeros {
    background-color: var(--white);
}

.cta-produtos {
    background-color: var(--white);
    justify-content: center;
    padding: 10px;
}

/* ==========================================
   SEÇÃO PRODUTOS
   ========================================== */
.section-produtos {
    background-color: var(--white);
    padding: 10px;
    overflow: hidden;
}

.produtos-container {
    display: flex;
    flex-direction: column;
    gap: 39px;
    padding: 10px;
}

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

.produtos-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.produtos-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    color: var(--black);
}

/* CAROUSEL DESTAQUE */
.carousel-destaque {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.carousel-item-grande {
    flex: 1;
    position: relative;
    height: 500px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.carousel-item-grande img {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
    border-radius: 20px;
}

.carousel-item-grande p {
    position: relative;
    background-color: var(--dark-overlay);
    color: var(--white);
    padding: 10px;
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    width: calc(100% - 20px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin: 20px;
    border-radius: 0px 0 20px 20px;
}

/* CAROUSEL PRODUTOS - SWIPER */
.carousel-produtos {
    width: 100%;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
}

.carousel-produtos.swiper {
    overflow: hidden;
}

.carousel-produtos .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.carousel-produtos .swiper-slide {
    display: flex;
    align-items: stretch;
}

.produto-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: 420px;
    margin: 15px 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
}

.produto-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.produto-titulo {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
}

.produto-descricao {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black);
    flex-grow: 1;
}

/* SWIPER NAVIGATION - PRODUTOS */
.carousel-produtos .swiper-button-next,
.carousel-produtos .swiper-button-prev {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 40px;
    box-shadow: #00000029 0 0 10px;
}

.carousel-produtos .swiper-button-next:hover,
.carousel-produtos .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-produtos .swiper-button-next::after,
.carousel-produtos .swiper-button-prev::after {
    display: none;
}

.carousel-produtos .swiper-button-next::before,
.carousel-produtos .swiper-button-prev::before {
    content: '';
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.carousel-produtos .swiper-button-prev::before {
    background-image: url('../images/icone-seta-anterior-carousel.svg');
}

.carousel-produtos .swiper-button-next::before {
    background-image: url('../images/icone-seta-proxima-carousel.svg');
}

.carousel-produtos .swiper-pagination {
    display: none;
}

/* ==========================================
   SEÇÃO ENTREGA
   ========================================== */
.section-entrega {
    position: relative;
    width: 100%;
    background: url('../images/semente-background-green-dark.svg') var(--lemon-green) no-repeat 10% 0px;
    overflow: hidden;
    margin: 100px 0;
}

.entrega-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 350px;
    width: 40%;
}

.entrega-container a {
    background: #FFF !important;
}

.entrega-container h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--dark-green);
    text-align: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--light-beige);
}

.footer-content {
    padding: 40px 30px;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    width: 210px;
    height: 60px;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    white-space: nowrap;
}

.footer-endereco {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.footer-bottom {
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 100%;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-cream);
    flex: 1;
    text-align: left;
}

.footer-sociais {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-sociais a:hover {
    transform: scale(1.1);
}

.footer-sociais img {
    width: 22px;
    height: 22px;
}

.float-button {
    position: fixed;
    right: 40px;
    bottom: 150px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #055303 0%, #033d02 100%);
    box-shadow: 0 4px 12px rgba(5, 83, 3, 0.4);
    transition: all 0.3s ease;
    animation: floatButtonPulse 2s ease-in-out infinite, slideInRight 0.6s ease-out;
    cursor: pointer;
}

.float-button:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 24px rgba(5, 83, 3, 0.6);
}

.float-button:active {
    transform: scale(0.95);
}

.float-button img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.float-button:hover img {
    transform: scale(1.1) rotate(-10deg);
}

@keyframes floatButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(5, 83, 3, 0.4), 0 0 0 0 rgba(5, 83, 3, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(5, 83, 3, 0.4), 0 0 0 8px rgba(5, 83, 3, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVIDADE - Tablet (768px)
   ========================================== */
@media (max-width: 768px) {
    /* Containers em 90% no tablet */
    [class$="-container"] {
        width: 90%;
        max-width: 100%;
    }
    /* HEADER */
    .header-container {
        flex-direction: row;
        gap: 20px;
        padding: 16px 20px;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: max-height 0.3s ease;
    }

    .navigation.active {
        max-height: 500px;
        padding: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    .btn-cotacao {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
    }

    /* BANNER */
    .banner-principal {
        height: 600px;
    }

    .empresa-contact-whatsapp {
        flex-direction: row;
        height: 120px;
    }

    .empresa-contact-whatsapp img {
        width: 30px;
        height: 30px;
    }

    .banner-principal .owl-item {
        height: 600px;
    }

    .banner-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .banner-principal .owl-nav button {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    /* EMPRESA */
    .empresa-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .empresa-image {
        grid-column: 1;
        grid-row: 1;
    }

    .empresa-image img {
        width: 100%;
        height: auto;
    }

    .empresa-contact-whatsapp,
    .empresa-contact-email {
        grid-column: 1;
        width: 100%;
        margin-top: 0 !important;
    }

    .empresa-content {
        grid-column: 1;
        grid-row: auto;
    }

    .empresa-content h2 {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 0px;
    }

    .empresa-description {
        grid-column: 1;
        width: 100%;
        margin-top: 0;
    }

    /* NÚMEROS */
    .numeros-grid {
        flex-direction: column;
        gap: 30px;
    }

    .numero-item {
        min-width: unset;
    }

    .numeros-image {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    /* PRODUTOS */
    .carousel-destaque {
        flex-direction: column;
        height: 700px;
    }

    .produto-card {
        width: 100% !important;
        min-width: unset;
        height: auto;
        margin: 10px 5px;
    }

    .carousel-produtos {
        position: relative;
        padding: 15px 60px;
    }

    .produtos-container {
        padding: 10px 0;
    }

    /* CTA BUTTONS */
    .btn-primary {
        width: 90%;
        height: auto;
        padding: 12px 24px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-secondary {
        width: 90%;
        height: auto;
        padding: 12px 24px;
        font-size: 16px;
    }

    /* FOOTER */
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
        flex: none;
    }
}

/* ==========================================
   RESPONSIVIDADE - Mobile (480px)
   ========================================== */
@media (max-width: 480px) {
    /* Containers em 90% no mobile */
    [class$="-container"] {
        width: 90%;
        max-width: 100%;
    }
    /* HEADER */
    .logo {
        width: 150px;
        height: 50px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    }


    .btn-cotacao {
        font-size: 14px;
        padding: 10px 16px;
    }

    /* BANNER */
    .banner-principal {
        height: 400px;
    }

    .banner-principal .owl-item {
        height: 400px;
    }

    .banner-content {
        padding-top: 20px;
    }

    
    .txt-header-empresa {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .txt-header-empresa img {
        width: 60px;
        margin-bottom: 16px;
    }

    .semente-naturais-decor {
        width: 100%;
        margin: -140px auto 0;
    }

    .banner-principal .swiper-slide {
        background-size: cover;
    }

    .banner-content h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-principal .owl-nav button {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }

    /* EMPRESA */

    .section-empresa {
        padding: 20px 10px 100px;
    }

    .empresa-subtitle {
        font-size: 18px;
    }

    .empresa-content h2 {
        font-size: 22px;
        line-height: 28px;
    }

    /* NÚMEROS */
    .numeros-container h2 {
        font-size: 18px;
    }

    .numero-valor {
        font-size: 48px;
        line-height: 50px;
    }

    .numero-unidade {
        font-size: 20px;
    }

    .numero-descricao {
        font-size: 14px;
    }

    .produtos-subtitle {
        font-size: 18px;
    }

    /* PRODUTOS */
    .produtos-header h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .carousel-item-grande p {
        font-size: 18px;
        height: 60px;
    }

    .produto-titulo {
        font-size: 18px;
    }

    .carousel-item-grande {
        height: 350px;
    }

    .carousel-produtos {
        padding: 0px;
    }

    .produto-card {
        width: 100%;
        height: 450px;
        margin: 10px 5px;
        padding: 15px;
    }

    .carousel-produtos .swiper-button-prev,
    .carousel-produtos .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    /* ENTREGA */
    .entrega-container h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .footer-info {
        flex-direction: column-reverse;
        text-align: center;
    }

    /* FOOTER */
    .footer-sociais {
        gap: 20px;
    }

    .footer-logo {
        width: 160px;
        height: min-content;
        flex-shrink: 0;
        margin-bottom: 32px;
    }

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

    .footer-details {
        align-items: center;
    }

    .info-empresa {
        flex-direction: column-reverse;
    }

    .empresa-image img {
        margin-left: 0px;
    }

    .empresa-image {
        width: 100%;
    }

    /* BANNER - IMAGENS RESPONSIVAS */
    .banner-sementes {
        background-image: url('../images/banner-mobile-principal-sementes-alimentos2.png') !important;
    }
}
