.elementor-9 .elementor-element.elementor-element-39b48ac{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-9 .elementor-element.elementor-element-31ed47e{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-31ed47e */.hero-farma {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    /* GRADIENTE REALISTA DO MOCKUP */
    background: linear-gradient(
        180deg,
        #0d7c85 0%,        /* topo mais escuro (azul petróleo) */
        #3db4b5 40%,       /* meio turquesa */
        #8ad4c2 75%,       /* verde-água claro */
        #bce3be 100%       /* toque amarelado suave */
    );
}

/* TEXTURA EM OVERLAY (PNG DO MOCKUP) */
.hero-farma::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/wp-content/uploads/2026/01/bg.png") center/cover no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

.hero-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-text h1 span {
    color: #d9ffbf; /* verde-claro igual ao mockup */
}

.hero-text h1 strong {
    color: #ffe86a; /* amarelo suave igual ao mockup */
}

.sub {
    font-size: 20px;
    margin-top: 10px;
    color: #e9ffff;
}

.hero-banner {
    background: #ffdd33;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
    margin: 22px 0 10px;
    font-size: 18px;
    color: #002b2b;
}

.hero-banner strong {
    font-weight: 800;
}

.descricao {
    color: #ffffffcc;
    margin-bottom: 25px;
}

.btn-pedido {
    background: #ffffff;
    color: #007d84;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.hero-img img {
    width: 420px;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-img img {
        width: 300px;
        margin-top: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-39b48ac *//* ===== HEADER ===== */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    padding: 10px 0;
    position: relative;
    z-index: 99;
}

.header .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header .logo img {
    height: 55px;
    width: auto;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #0a2a4a;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #0077cc;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .nav-menu {
        display: none; /* menu mobile virá depois caso queira */
    }

    .btn-whatsapp {
        padding: 8px 18px;
        font-size: 14px;
    }

    .header .logo img {
        height: 48px;
    }
}/* End custom CSS */