/* =========================
        CONFIGURAÇÕES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7faf7;
    color: #173323;
}


/* =========================
            HEADER
========================= */

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #dce9df;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 90%;
    max-width: 1280px;
    min-height: 92px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================
             LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #08783f,
        #58b947
    );

    color: white;

    font-size: 31px;
    font-weight: 300;

    border-radius: 50% 50% 50% 12px;

    box-shadow: 0 8px 22px rgba(8, 120, 63, 0.18);
}

.logo-text {
    font-size: 25px;
    letter-spacing: -1px;
    color: #075f37;
}

.logo-text strong {
    font-weight: 800;
}

.logo-text span {
    color: #65b632;
    font-weight: 500;
}


/* =========================
             MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-menu a {
    position: relative;

    padding: 35px 17px;

    text-decoration: none;

    color: #243c2c;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}


/* linha verde */

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 23px;

    width: 0;
    height: 3px;

    background: #58b947;

    border-radius: 10px;

    transform: translateX(-50%);

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #08783f;
}

.nav-menu a:hover::after {
    width: 28px;
}


/* =========================
         BOTÃO HEADER
========================= */

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 23px;

    background: linear-gradient(
        135deg,
        #08783f,
        #15904e
    );

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 10px;

    box-shadow: 0 8px 22px rgba(8, 120, 63, 0.20);

    transition: 0.3s ease;

    white-space: nowrap;
}

.header-button:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #056633,
        #08783f
    );

    box-shadow: 0 12px 28px rgba(8, 120, 63, 0.28);
}


/* =========================
          RESPONSIVO
========================= */

@media (max-width: 1050px) {

    .nav-menu {
        display: none;
    }

}


@media (max-width: 600px) {

    .header-container {
        width: 92%;
        min-height: 76px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .logo-text {
        font-size: 21px;
    }

    .header-button {
        padding: 0 15px;
        min-height: 43px;
        font-size: 12px;
    }

}


@media (max-width: 430px) {

    .header-button {
        display: none;
    }

}

/* =====================================================
                        HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(99, 190, 67, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fcf9 0%,
            #ffffff 55%,
            #eff9f1 100%
        );
}


/* detalhe de fundo */

.hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: -230px;

    border: 80px solid rgba(80, 178, 70, 0.06);

    border-radius: 50%;
}


.hero-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    padding: 75px 0;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.hero-content {
    max-width: 610px;
}


/* BADGE */

.hero-badge {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 8px 15px 8px 9px;

    margin-bottom: 22px;

    background: #e8f6eb;

    border: 1px solid #c9e8cf;

    border-radius: 30px;

    color: #08783f;

    font-size: 13px;
    font-weight: 700;
}


.hero-badge-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #08783f;

    color: white;

    border-radius: 50%;

    font-size: 18px;
}


/* TÍTULO */

.hero h1 {
    margin-bottom: 22px;

    color: #173323;

    font-size: clamp(42px, 4.2vw, 65px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.hero h1 span {
    display: block;

    color: #149447;
}


/* DESCRIÇÃO */

.hero-description {
    max-width: 530px;

    margin-bottom: 31px;

    color: #607068;

    font-size: 18px;

    line-height: 1.7;
}


/* =====================================================
                    SERVIÇOS
===================================================== */

.hero-services {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 30px;
}


.hero-service {
    width: 100%;

    max-width: 500px;

    min-height: 69px;

    display: grid;

    grid-template-columns: 46px 1fr 25px;

    align-items: center;

    gap: 14px;

    padding: 10px 16px 10px 10px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid #deebe1;

    border-radius: 13px;

    text-decoration: none;

    box-shadow: 0 7px 25px rgba(13, 80, 45, 0.05);

    transition: all 0.3s ease;
}


.hero-service:hover {
    border-color: #62bb46;

    transform: translateX(7px);

    box-shadow: 0 12px 30px rgba(13, 80, 45, 0.10);
}


.service-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9f6eb;

    color: #08783f;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;
}


.hero-service strong {
    display: block;

    margin-bottom: 3px;

    color: #173323;

    font-size: 15px;
}


.hero-service small {
    display: block;

    color: #7b8c82;

    font-size: 12px;
}


.service-arrow {
    color: #149447;

    font-size: 20px;

    transition: 0.3s;
}


.hero-service:hover .service-arrow {
    transform: translateX(4px);
}


/* =====================================================
                        BOTÕES
===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 13px;
}


.btn-primary,
.btn-secondary {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}


.btn-primary {
    gap: 13px;

    background: linear-gradient(
        135deg,
        #08783f,
        #15994f
    );

    color: white;

    box-shadow: 0 10px 25px rgba(8, 120, 63, 0.22);
}


.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(8, 120, 63, 0.30);
}


.btn-primary span {
    font-size: 20px;
}


.btn-secondary {
    color: #08783f;

    background: white;

    border: 1px solid #bdddc6;
}


.btn-secondary:hover {
    background: #edf8f0;

    border-color: #08783f;
}


/* =====================================================
                        IMAGEM
===================================================== */

.hero-image {
    position: relative;

    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-image img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 30px 90px 30px 30px;

    box-shadow:
        0 30px 70px rgba(8, 72, 40, 0.17);
}


/* DETALHES DECORATIVOS */

.image-decoration {
    position: absolute;

    border-radius: 50%;

    z-index: 1;
}


.decoration-one {
    width: 180px;
    height: 180px;

    top: -25px;
    right: -35px;

    background: #62bb46;
}


.decoration-two {
    width: 130px;
    height: 130px;

    bottom: -25px;
    left: -35px;

    border: 25px solid #d8f0d9;
}


/* =====================================================
                    CARD FLUTUANTE
===================================================== */

.hero-floating-card {
    position: absolute;

    z-index: 5;

    left: -45px;
    bottom: 40px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 17px 21px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e1eee4;

    border-radius: 15px;

    box-shadow:
        0 18px 45px rgba(14, 74, 43, 0.17);
}


.floating-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: linear-gradient(
        135deg,
        #08783f,
        #62bb46
    );

    color: white;

    border-radius: 50%;

    font-size: 20px;
    font-weight: 800;
}


.hero-floating-card strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 14px;
}


.hero-floating-card span {
    display: block;

    color: #78877e;

    font-size: 11px;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 0;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero-image {
        width: 100%;
        height: 500px;
    }


    .hero-floating-card {
        left: 25px;
    }

}


@media (max-width: 600px) {

    .hero-container {
        width: 92%;

        padding: 45px 0;
    }


    .hero h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .btn-primary,
    .btn-secondary {
        width: 100%;
    }


    .hero-image {
        height: 420px;
    }


    .hero-image img {
        border-radius: 22px 60px 22px 22px;
    }


    .hero-floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

}

/* =====================================================
                    SERVIÇOS
===================================================== */

.services-section {
    position: relative;

    width: 100%;

    padding: 110px 0 120px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5faf6 100%
        );
}


/* detalhe verde */

.services-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 100px;

    border-radius: 50%;

    background: rgba(86, 184, 72, 0.07);
}


.services-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =====================================================
                CABEÇALHO
===================================================== */

.services-header {
    max-width: 690px;

    margin-bottom: 55px;
}


.section-tag {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.section-tag span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f6e9;

    border-radius: 50%;

    color: #08783f;

    font-size: 18px;
}


.services-header h2 {
    margin-bottom: 18px;

    color: #173323;

    font-size: clamp(36px, 4vw, 53px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


.services-header h2 span {
    color: #159447;
}


.services-header p {
    max-width: 590px;

    color: #6d7d73;

    font-size: 17px;

    line-height: 1.7;
}


/* =====================================================
                    GRID
===================================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =====================================================
                    CARD
===================================================== */

.service-card {
    position: relative;

    min-height: 370px;

    display: flex;
    flex-direction: column;

    padding: 29px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce9df;

    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(18, 69, 40, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.service-card:hover {
    transform: translateY(-9px);

    border-color: #75bf61;

    box-shadow:
        0 24px 55px rgba(18, 82, 45, 0.13);
}


/* número */

.service-number {
    position: absolute;

    top: 24px;
    right: 25px;

    color: #dbe9de;

    font-size: 32px;

    font-weight: 800;
}


/* ÍCONE */

.service-card-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    background: linear-gradient(
        135deg,
        #e7f6e9,
        #f2faf3
    );

    border: 1px solid #d5ead9;

    border-radius: 17px;

    color: #08783f;

    font-size: 22px;

    font-weight: 800;

    transition: 0.3s ease;
}


.service-card:hover .service-card-icon {
    background: linear-gradient(
        135deg,
        #08783f,
        #5ab948
    );

    color: white;

    transform: scale(1.05);
}


/* =====================================================
                CONTEÚDO DO CARD
===================================================== */

.service-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;
}


.service-card h3 {
    max-width: 220px;

    margin-bottom: 13px;

    color: #173323;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 800;
}


.service-card p {
    margin-bottom: 25px;

    color: #748179;

    font-size: 14px;

    line-height: 1.65;
}


/* =====================================================
                    LINK
===================================================== */

.service-link {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: auto;

    color: #08783f;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s;
}


.service-link span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf8ef;

    border-radius: 50%;

    font-size: 17px;

    transition: 0.3s;
}


.service-link:hover span {
    background: #08783f;

    color: white;

    transform: translateX(4px);
}


/* =====================================================
                CARD DESTAQUE
===================================================== */

.service-card.featured {
    background:
        linear-gradient(
            145deg,
            #075f36,
            #078046
        );

    border-color: transparent;

    box-shadow:
        0 20px 50px rgba(8, 120, 63, 0.20);
}


.service-card.featured .service-number {
    color: rgba(255,255,255,0.15);
}


.service-card.featured .service-card-icon {
    background: rgba(255,255,255,0.13);

    border-color: rgba(255,255,255,0.18);

    color: white;
}


.service-card.featured h3 {
    color: white;
}


.service-card.featured p {
    color: rgba(255,255,255,0.75);
}


.service-card.featured .service-link {
    color: white;
}


.service-card.featured .service-link span {
    background: white;

    color: #08783f;
}


/* etiqueta */

.service-label {
    width: fit-content;

    margin-bottom: 9px;

    padding: 5px 10px;

    background: #7dcc55;

    color: #073b23;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .services-section {
        padding: 75px 0;
    }


    .services-container {
        width: 92%;
    }


    .services-header {
        margin-bottom: 35px;
    }


    .services-header h2 {
        font-size: 37px;

        letter-spacing: -1.4px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: 320px;
    }

}


/* =====================================================
                    COMO FUNCIONA
===================================================== */

.how-section {
    position: relative;

    width: 100%;

    padding: 120px 0;

    overflow: hidden;

    background: #ffffff;
}


.how-container {
    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 100px;
}


/* =====================================================
                        IMAGEM
===================================================== */

.how-image {
    position: relative;

    width: 100%;
    height: 620px;
}


.how-image img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 30px 90px 30px 30px;

    box-shadow:
        0 30px 70px rgba(11, 79, 43, 0.16);
}


/* FUNDO VERDE */

.how-image-bg {
    position: absolute;

    width: 90%;
    height: 90%;

    left: -28px;
    bottom: -28px;

    background: linear-gradient(
        145deg,
        #08783f,
        #69bd48
    );

    border-radius: 35px;

    z-index: 1;
}


/* =====================================================
                    CARD FLUTUANTE
===================================================== */

.how-image-card {
    position: absolute;

    z-index: 5;

    right: -45px;
    bottom: 55px;

    min-width: 245px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid #deebe1;

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(9, 68, 38, 0.17);
}


.how-card-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #08783f,
        #62bb46
    );

    color: white;

    border-radius: 13px;

    font-size: 21px;
    font-weight: 800;
}


.how-image-card strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 15px;
}


.how-image-card span {
    display: block;

    color: #7a8980;

    font-size: 11px;
}


/* DETALHE + */

.how-detail {
    position: absolute;

    z-index: 4;

    top: -24px;
    right: -25px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #69bd48;

    border: 8px solid white;

    border-radius: 50%;

    color: white;

    box-shadow:
        0 10px 30px rgba(29, 122, 66, 0.18);
}


.how-detail strong {
    font-size: 32px;
    font-weight: 400;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.how-content {
    max-width: 590px;
}


.how-tag {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.how-tag span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f6e9;

    border-radius: 50%;

    font-size: 18px;
}


.how-content h2 {
    margin-bottom: 20px;

    color: #173323;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.07;

    letter-spacing: -2.3px;

    font-weight: 800;
}


.how-content h2 span {
    display: block;

    color: #159447;
}


.how-description {
    max-width: 540px;

    margin-bottom: 37px;

    color: #6d7c73;

    font-size: 16px;

    line-height: 1.75;
}


/* =====================================================
                        PASSOS
===================================================== */

.steps-wrapper {
    display: flex;
    flex-direction: column;

    margin-bottom: 35px;
}


.how-step {
    position: relative;

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;

    min-height: 105px;
}


/* NÚMERO */

.step-number {
    position: relative;

    z-index: 2;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff8f1;

    border: 1px solid #cfe7d4;

    border-radius: 14px;

    color: #08783f;

    font-size: 14px;
    font-weight: 800;

    transition: 0.3s ease;
}


.how-step:hover .step-number {
    background: linear-gradient(
        135deg,
        #08783f,
        #58b947
    );

    border-color: transparent;

    color: white;

    transform: scale(1.05);
}


/* LINHA VERTICAL */

.step-line {
    position: absolute;

    left: 25px;
    top: 54px;

    width: 2px;
    height: 51px;

    background: #d9e9dc;
}


/* TEXTO */

.step-content {
    padding-top: 3px;
}


.step-content h3 {
    margin-bottom: 7px;

    color: #173323;

    font-size: 18px;

    font-weight: 800;
}


.step-content p {
    max-width: 440px;

    color: #75847b;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
                        BOTÃO
===================================================== */

.how-button {
    width: fit-content;

    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    padding: 0 25px;

    background: linear-gradient(
        135deg,
        #08783f,
        #15974e
    );

    border-radius: 10px;

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(8, 120, 63, 0.20);

    transition: 0.3s ease;
}


.how-button span {
    font-size: 20px;
}


.how-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(8, 120, 63, 0.29);
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1050px) {

    .how-container {
        grid-template-columns: 1fr;

        gap: 85px;
    }


    .how-image {
        max-width: 700px;

        height: 550px;

        margin: 0 auto;
    }


    .how-content {
        max-width: 700px;
    }

}


@media (max-width: 650px) {

    .how-section {
        padding: 80px 0;
    }


    .how-container {
        width: 92%;

        gap: 70px;
    }


    .how-image {
        height: 430px;
    }


    .how-image img {
        border-radius: 22px 55px 22px 22px;
    }


    .how-image-bg {
        left: -12px;
        bottom: -15px;
    }


    .how-image-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        min-width: 0;
    }


    .how-detail {
        width: 60px;
        height: 60px;

        top: -20px;
        right: -10px;
    }


    .how-content h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .how-button {
        width: 100%;
    }

}

/* =====================================================
                ÁREA DO BENEFICIÁRIO
===================================================== */

.beneficiary-section {
    position: relative;

    width: 100%;

    padding: 115px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #054f2d 0%,
            #08783f 45%,
            #0b8c49 100%
        );
}


/* =====================================================
                DETALHES DE FUNDO
===================================================== */

.beneficiary-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.circle-one {
    width: 500px;
    height: 500px;

    top: -300px;
    right: -120px;

    border: 80px solid rgba(255,255,255,0.04);
}


.circle-two {
    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -120px;

    background: rgba(105, 189, 72, 0.08);
}


/* =====================================================
                    CONTAINER
===================================================== */

.beneficiary-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =====================================================
                    CABEÇALHO
===================================================== */

.beneficiary-header {
    margin-bottom: 50px;
}


.beneficiary-tag {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 19px;

    color: #a9df8d;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.beneficiary-tag span {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.11);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    color: white;

    font-size: 19px;
}


.beneficiary-title-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;
}


.beneficiary-title-row h2 {
    max-width: 650px;

    color: white;

    font-size: clamp(39px, 4vw, 57px);

    line-height: 1.06;

    letter-spacing: -2.3px;

    font-weight: 800;
}


.beneficiary-title-row h2 span {
    display: block;

    color: #9cdc78;
}


.beneficiary-title-row > p {
    max-width: 390px;

    padding-bottom: 5px;

    color: rgba(255,255,255,0.69);

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
                        GRID
===================================================== */

.beneficiary-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 13px;
}


/* =====================================================
                        CARD
===================================================== */

.beneficiary-card {
    position: relative;

    min-height: 295px;

    display: flex;
    flex-direction: column;

    padding: 23px;

    overflow: hidden;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 18px;

    color: white;

    text-decoration: none;

    backdrop-filter: blur(10px);

    transition: 0.35s ease;
}


.beneficiary-card:hover {
    transform: translateY(-8px);

    background: white;

    border-color: white;

    box-shadow:
        0 25px 50px rgba(0, 46, 24, 0.25);
}


/* =====================================================
                    TOPO DO CARD
===================================================== */

.beneficiary-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 44px;
}


.beneficiary-icon {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 14px;

    color: white;

    font-size: 19px;

    font-weight: 800;

    transition: 0.3s ease;
}


.beneficiary-arrow {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50%;

    font-size: 18px;

    transition: 0.3s ease;
}


/* =====================================================
                    TEXTO CARD
===================================================== */

.beneficiary-small {
    display: block;

    margin-bottom: 8px;

    color: #9cdc78;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.beneficiary-card h3 {
    margin-bottom: 10px;

    color: white;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.2;
}


.beneficiary-card p {
    color: rgba(255,255,255,0.63);

    font-size: 12px;

    line-height: 1.65;
}


/* =====================================================
                    CARD HOVER
===================================================== */

.beneficiary-card:hover .beneficiary-icon {
    background: #e9f7ec;

    border-color: #d3ead8;

    color: #08783f;
}


.beneficiary-card:hover .beneficiary-arrow {
    background: #08783f;

    border-color: #08783f;

    color: white;

    transform: rotate(-45deg);
}


.beneficiary-card:hover .beneficiary-small {
    color: #159447;
}


.beneficiary-card:hover h3 {
    color: #173323;
}


.beneficiary-card:hover p {
    color: #718078;
}


/* =====================================================
                    CARD DESTAQUE
===================================================== */

.beneficiary-featured {
    background: white;

    border-color: white;

    box-shadow:
        0 22px 50px rgba(0, 44, 23, 0.22);
}


.beneficiary-featured .beneficiary-icon {
    background: #e8f6eb;

    border-color: #d4ead8;

    color: #08783f;
}


.beneficiary-featured .beneficiary-arrow {
    background: #08783f;

    border-color: #08783f;

    color: white;
}


.beneficiary-featured .beneficiary-small {
    color: #159447;
}


.beneficiary-featured h3 {
    color: #173323;
}


.beneficiary-featured p {
    color: #718078;
}


/* MAIS ACESSADO */

.popular-badge {
    position: absolute;

    top: 0;
    right: 0;

    padding: 7px 12px;

    background: #76c452;

    color: #074328;

    border-radius: 0 18px 0 12px;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.7px;
}


/* =====================================================
                RODAPÉ DA SEÇÃO
===================================================== */

.beneficiary-footer {
    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.13);
}


.beneficiary-help {
    display: flex;

    align-items: center;

    gap: 13px;
}


.help-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50%;

    color: white;

    font-size: 16px;

    font-weight: 800;
}


.beneficiary-help strong {
    display: block;

    margin-bottom: 3px;

    color: white;

    font-size: 13px;
}


.beneficiary-help span {
    color: rgba(255,255,255,0.60);

    font-size: 11px;
}


/* =====================================================
                    BOTÃO
===================================================== */

.beneficiary-button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 0 22px;

    background: white;

    border-radius: 10px;

    color: #08783f;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s ease;
}


.beneficiary-button span {
    font-size: 19px;
}


.beneficiary-button:hover {
    transform: translateY(-3px);

    background: #eaf7ed;

    box-shadow:
        0 12px 30px rgba(0, 42, 22, 0.18);
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1100px) {

    .beneficiary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .beneficiary-title-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .beneficiary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .beneficiary-section {
        padding: 80px 0;
    }


    .beneficiary-container {
        width: 92%;
    }


    .beneficiary-title-row h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .beneficiary-grid {
        grid-template-columns: 1fr;
    }


    .beneficiary-card {
        min-height: 250px;
    }


    .beneficiary-footer {
        flex-direction: column;

        align-items: stretch;
    }


    .beneficiary-button {
        width: 100%;
    }

}

/* =====================================================
                BENEFÍCIOS / DIFERENCIAIS
===================================================== */

.benefits-section {
    position: relative;

    width: 100%;

    padding: 115px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7fbf8 0%,
            #ffffff 100%
        );
}


/* detalhe fundo */

.benefits-section::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -220px;
    left: -150px;

    border-radius: 50%;

    border: 70px solid rgba(58, 163, 77, 0.04);
}


/* =====================================================
                    CONTAINER
===================================================== */

.benefits-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =====================================================
                    CABEÇALHO
===================================================== */

.benefits-header {
    margin-bottom: 55px;
}


.benefits-tag {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.benefits-tag span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f6e9;

    border-radius: 50%;

    color: #08783f;

    font-size: 18px;
}


.benefits-title-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 70px;
}


.benefits-title-row h2 {
    max-width: 680px;

    color: #173323;

    font-size: clamp(39px, 4vw, 55px);

    line-height: 1.07;

    letter-spacing: -2.2px;

    font-weight: 800;
}


.benefits-title-row h2 span {
    display: block;

    color: #159447;
}


.benefits-title-row > p {
    max-width: 400px;

    color: #728078;

    font-size: 15px;

    line-height: 1.7;

    padding-bottom: 5px;
}


/* =====================================================
                        GRID
===================================================== */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =====================================================
                        CARD
===================================================== */

.benefit-card {
    position: relative;

    min-height: 310px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce9df;

    border-radius: 20px;

    box-shadow:
        0 14px 40px rgba(13, 74, 40, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.benefit-card:hover {
    transform: translateY(-9px);

    border-color: #91ca80;

    box-shadow:
        0 24px 55px rgba(13, 74, 40, 0.12);
}


/* =====================================================
                    TOPO DO CARD
===================================================== */

.benefit-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 55px;
}


.benefit-icon {
    width: 59px;
    height: 59px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #e7f6e9,
            #f4faf5
        );

    border: 1px solid #d5ead9;

    border-radius: 16px;

    color: #08783f;

    font-size: 22px;

    font-weight: 800;

    transition: 0.35s ease;
}


.benefit-card:hover .benefit-icon {
    background:
        linear-gradient(
            135deg,
            #08783f,
            #59b948
        );

    border-color: transparent;

    color: white;

    transform: rotate(-5deg) scale(1.05);
}


.benefit-number {
    color: #dbe8de;

    font-size: 26px;

    font-weight: 800;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.benefit-content {
    margin-top: auto;
}


.benefit-content h3 {
    margin-bottom: 11px;

    color: #173323;

    font-size: 20px;

    font-weight: 800;
}


.benefit-content p {
    color: #748179;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
                    LINHA INFERIOR
===================================================== */

.benefit-line {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #08783f,
            #69bd48
        );

    transition: width 0.4s ease;
}


.benefit-card:hover .benefit-line {
    width: 100%;
}


/* =====================================================
                    BLOCO INFERIOR
===================================================== */

.benefits-bottom {
    margin-top: 32px;

    min-height: 88px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background: #eff8f1;

    border: 1px solid #d7eadb;

    border-radius: 17px;
}


.benefits-bottom-text {
    display: flex;

    align-items: center;

    gap: 14px;
}


.benefits-check {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #5ab949
        );

    border-radius: 50%;

    color: white;

    font-size: 19px;

    font-weight: 800;
}


.benefits-bottom-text strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 14px;
}


.benefits-bottom-text span {
    display: block;

    color: #748179;

    font-size: 12px;
}


/* =====================================================
                        BOTÃO
===================================================== */

.benefits-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 0 22px;

    flex-shrink: 0;

    background: #08783f;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(8, 120, 63, 0.17);

    transition: 0.3s ease;
}


.benefits-button span {
    font-size: 18px;
}


.benefits-button:hover {
    transform: translateY(-3px);

    background: #056633;

    box-shadow:
        0 12px 27px rgba(8, 120, 63, 0.25);
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1050px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .benefits-title-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}


@media (max-width: 600px) {

    .benefits-section {
        padding: 80px 0;
    }


    .benefits-container {
        width: 92%;
    }


    .benefits-title-row h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .benefit-card {
        min-height: 270px;
    }


    .benefits-bottom {
        flex-direction: column;

        align-items: stretch;
    }


    .benefits-button {
        width: 100%;
    }

}

/* =====================================================
                    SOBRE / CUIDADO
===================================================== */

.about-section {
    position: relative;

    width: 100%;

    padding: 125px 0;

    overflow: hidden;

    background: #ffffff;
}


/* detalhe fundo */

.about-section::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -260px;
    bottom: -210px;

    border-radius: 50%;

    background: rgba(91, 185, 73, 0.06);
}


/* =====================================================
                    CONTAINER
===================================================== */

.about-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 105px;
}


/* =====================================================
                        IMAGEM
===================================================== */

.about-image-wrapper {
    position: relative;

    width: 100%;
    height: 650px;
}


.about-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius:
        100px 30px 30px 30px;

    box-shadow:
        0 30px 70px
        rgba(9, 72, 39, 0.16);
}


/* forma verde atrás da imagem */

.about-image-shape {
    position: absolute;

    z-index: 1;

    width: 90%;
    height: 91%;

    left: -28px;
    bottom: -28px;

    border-radius:
        100px 30px 30px 30px;

    background:
        linear-gradient(
            145deg,
            #08783f,
            #6abe4c
        );
}


/* =====================================================
                    CARD FLUTUANTE
===================================================== */

.about-floating-card {
    position: absolute;

    z-index: 5;

    right: -55px;
    bottom: 45px;

    min-width: 280px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 19px 21px;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid #dceadf;

    border-radius: 17px;

    box-shadow:
        0 20px 50px
        rgba(9, 68, 38, 0.17);
}


.about-floating-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #65bc49
        );

    color: #ffffff;

    font-size: 28px;

    font-weight: 400;
}


.about-floating-card strong {
    display: block;

    margin-bottom: 5px;

    color: #173323;

    font-size: 14px;

    font-weight: 800;
}


.about-floating-card span {
    display: block;

    color: #77867d;

    font-size: 11px;
}


/* =====================================================
                        SELO
===================================================== */

.about-seal {
    position: absolute;

    z-index: 5;

    top: 32px;
    left: -42px;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border:
        8px solid #ffffff;

    border-radius: 50%;

    background: #08783f;

    color: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(8, 83, 44, 0.20);
}


.about-seal-plus {
    display: block;

    margin-bottom: 4px;

    color: #8ed16d;

    font-size: 27px;

    line-height: 1;
}


.about-seal > span:last-child {
    font-size: 9px;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 1px;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.about-content {
    max-width: 590px;
}


.about-tag {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.about-tag span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f6eb;

    border-radius: 50%;

    font-size: 19px;
}


/* TÍTULO */

.about-content h2 {
    margin-bottom: 25px;

    color: #173323;

    font-size:
        clamp(40px, 4vw, 57px);

    line-height: 1.05;

    letter-spacing: -2.4px;

    font-weight: 800;
}


.about-content h2 span {
    display: block;

    color: #159447;
}


/* TEXTO */

.about-description {
    max-width: 550px;

    margin-bottom: 15px;

    color: #6e7d74;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
                    DIFERENCIAIS
===================================================== */

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px 25px;

    margin-top: 31px;

    margin-bottom: 34px;

    padding-top: 27px;

    border-top:
        1px solid #e0ebe2;
}


.about-feature {
    display: flex;

    align-items: center;

    gap: 11px;
}


.about-feature-icon {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #e9f7ec;

    color: #08783f;

    font-size: 14px;

    font-weight: 900;
}


.about-feature strong {
    display: block;

    margin-bottom: 3px;

    color: #173323;

    font-size: 12px;

    font-weight: 800;
}


.about-feature span {
    display: block;

    color: #839087;

    font-size: 10px;

    line-height: 1.4;
}


/* =====================================================
                        BOTÃO
===================================================== */

.about-button {
    width: fit-content;

    min-height: 53px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    padding: 0 25px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #15974e
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(8, 120, 63, 0.20);

    transition: 0.3s ease;
}


.about-button span {
    font-size: 20px;
}


.about-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(8, 120, 63, 0.29);
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1050px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 85px;
    }


    .about-image-wrapper {
        max-width: 700px;

        height: 570px;

        margin: 0 auto;
    }


    .about-content {
        max-width: 700px;
    }

}


@media (max-width: 650px) {

    .about-section {
        padding: 85px 0;
    }


    .about-container {
        width: 92%;

        gap: 65px;
    }


    .about-image-wrapper {
        height: 450px;
    }


    .about-image {
        border-radius:
            65px 22px 22px 22px;
    }


    .about-image-shape {
        left: -12px;

        bottom: -15px;

        border-radius:
            65px 22px 22px 22px;
    }


    .about-seal {
        width: 95px;
        height: 95px;

        left: -8px;
        top: 20px;

        border-width: 6px;
    }


    .about-seal > span:last-child {
        font-size: 7px;
    }


    .about-floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        min-width: 0;
    }


    .about-content h2 {
        font-size: 39px;

        letter-spacing: -1.6px;
    }


    .about-features {
        grid-template-columns: 1fr;
    }


    .about-button {
        width: 100%;
    }

}

/* =====================================================
                ATENDIMENTO DIGITAL
===================================================== */

.digital-section {
    position: relative;

    width: 100%;

    padding: 115px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #043f26 0%,
            #075f36 45%,
            #098648 100%
        );
}


/* =====================================================
                    DECORAÇÕES
===================================================== */

.digital-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.digital-decoration-one {
    width: 550px;
    height: 550px;

    top: -330px;
    right: -100px;

    border:
        85px solid rgba(255,255,255,0.035);
}


.digital-decoration-two {
    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -150px;

    background:
        rgba(109, 195, 77, 0.07);
}


/* =====================================================
                    CONTAINER
===================================================== */

.digital-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.05fr 0.75fr;

    align-items: center;

    gap: 100px;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.digital-content {
    max-width: 650px;
}


.digital-tag {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 20px;

    color: #a6df87;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.digital-tag span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    color: #ffffff;

    font-size: 19px;
}


/* =====================================================
                        TÍTULO
===================================================== */

.digital-content h2 {
    margin-bottom: 23px;

    color: #ffffff;

    font-size:
        clamp(42px, 4.5vw, 62px);

    line-height: 1.04;

    letter-spacing: -2.6px;

    font-weight: 800;
}


.digital-content h2 span {
    display: block;

    color: #9ddd79;
}


/* =====================================================
                        TEXTO
===================================================== */

.digital-content > p {
    max-width: 590px;

    margin-bottom: 34px;

    color:
        rgba(255,255,255,0.70);

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
                        BOTÕES
===================================================== */

.digital-buttons {
    display: flex;

    align-items: center;

    gap: 13px;
}


.digital-button-primary,
.digital-button-secondary {
    min-height: 53px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s ease;
}


.digital-button-primary {
    gap: 16px;

    background: #ffffff;

    color: #08783f;

    box-shadow:
        0 12px 30px
        rgba(0, 40, 21, 0.18);
}


.digital-button-primary span {
    font-size: 20px;
}


.digital-button-primary:hover {
    transform: translateY(-3px);

    background: #edfaef;

    box-shadow:
        0 16px 35px
        rgba(0, 35, 18, 0.25);
}


.digital-button-secondary {
    color: #ffffff;

    border:
        1px solid rgba(255,255,255,0.27);

    background:
        rgba(255,255,255,0.06);
}


.digital-button-secondary:hover {
    background:
        rgba(255,255,255,0.13);

    transform: translateY(-3px);
}


/* =====================================================
                    PAINEL DIREITO
===================================================== */

.digital-panel {
    position: relative;

    width: 100%;

    padding: 27px;

    background:
        rgba(255,255,255,0.97);

    border:
        1px solid rgba(255,255,255,0.4);

    border-radius: 23px;

    box-shadow:
        0 30px 70px
        rgba(0, 38, 20, 0.27);
}


/* =====================================================
                    CABEÇALHO PAINEL
===================================================== */

.digital-panel-header {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;

    padding-bottom: 21px;

    border-bottom:
        1px solid #e1ebe3;
}


.digital-status-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #65bd49
        );

    border-radius: 14px;

    color: white;

    font-size: 25px;
}


.digital-panel-header strong {
    display: block;

    margin-bottom: 6px;

    color: #173323;

    font-size: 15px;

    font-weight: 800;
}


.digital-online {
    display: flex !important;

    align-items: center;

    gap: 6px;

    color: #75847b;

    font-size: 10px;
}


.digital-online i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #54b947;

    box-shadow:
        0 0 0 4px
        rgba(84,185,71,0.12);
}


/* =====================================================
                    OPÇÕES
===================================================== */

.digital-options {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.digital-option {
    min-height: 72px;

    display: grid;

    grid-template-columns:
        45px 1fr 32px;

    align-items: center;

    gap: 13px;

    padding: 10px 12px;

    border:
        1px solid #dce9df;

    border-radius: 13px;

    color: inherit;

    text-decoration: none;

    background: #ffffff;

    transition: 0.3s ease;
}


.digital-option:hover {
    transform: translateX(5px);

    border-color: #80c36d;

    background: #f7fbf8;

    box-shadow:
        0 8px 22px
        rgba(8, 92, 48, 0.07);
}


/* ÍCONE */

.digital-option-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #e9f7ec;

    color: #08783f;

    font-size: 15px;

    font-weight: 900;
}


/* TEXTO */

.digital-option-text strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 12px;

    font-weight: 800;
}


.digital-option-text span {
    display: block;

    color: #829087;

    font-size: 10px;
}


/* SETA */

.digital-option-arrow {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eff8f1;

    color: #08783f;

    font-size: 16px;

    transition: 0.3s ease;
}


.digital-option:hover
.digital-option-arrow {
    background: #08783f;

    color: white;

    transform: rotate(-45deg);
}


/* =====================================================
                    SEGURANÇA
===================================================== */

.digital-security {
    margin-top: 20px;

    padding-top: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-top:
        1px solid #e3ece5;

    color: #7b8980;

    font-size: 9px;

    font-weight: 600;
}


.digital-security-icon {
    width: 21px;
    height: 21px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f6eb;

    color: #08783f;

    font-size: 9px;

    font-weight: 900;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1000px) {

    .digital-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .digital-panel {
        max-width: 600px;
    }

}


@media (max-width: 600px) {

    .digital-section {
        padding: 80px 0;
    }


    .digital-container {
        width: 92%;
    }


    .digital-content h2 {
        font-size: 40px;

        letter-spacing: -1.7px;
    }


    .digital-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .digital-button-primary,
    .digital-button-secondary {
        width: 100%;
    }


    .digital-panel {
        padding: 19px;
    }

}

/* =====================================================
                DÚVIDAS FREQUENTES
===================================================== */

.faq-section {
    position: relative;

    width: 100%;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5faf6 100%
        );
}


/* DETALHE FUNDO */

.faq-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -250px;
    bottom: -200px;

    border-radius: 50%;

    background:
        rgba(78, 178, 73, 0.06);
}


/* =====================================================
                    CONTAINER
===================================================== */

.faq-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 100px;

    align-items: start;
}


/* =====================================================
                    INTRODUÇÃO
===================================================== */

.faq-intro {
    position: sticky;

    top: 120px;
}


.faq-tag {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.faq-tag span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e7f6e9;

    border-radius: 50%;

    color: #08783f;

    font-size: 18px;
}


/* TÍTULO */

.faq-intro h2 {
    margin-bottom: 21px;

    color: #173323;

    font-size:
        clamp(40px, 4vw, 57px);

    line-height: 1.05;

    letter-spacing: -2.3px;

    font-weight: 800;
}


.faq-intro h2 span {
    display: block;

    color: #159447;
}


.faq-intro > p {
    max-width: 430px;

    margin-bottom: 35px;

    color: #718078;

    font-size: 15px;

    line-height: 1.75;
}


/* =====================================================
                    CARD DE AJUDA
===================================================== */

.faq-help-card {
    max-width: 430px;

    display: grid;

    grid-template-columns:
        46px 1fr 38px;

    align-items: center;

    gap: 13px;

    padding: 16px;

    background: #ffffff;

    border:
        1px solid #dce9df;

    border-radius: 15px;

    box-shadow:
        0 12px 35px
        rgba(11, 73, 40, 0.07);
}


.faq-help-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #62bb46
        );

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


.faq-help-card strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 12px;

    font-weight: 800;
}


.faq-help-card span {
    display: block;

    color: #7c8a81;

    font-size: 10px;
}


.faq-help-card a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf8ef;

    color: #08783f;

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;
}


.faq-help-card a:hover {
    background: #08783f;

    color: #ffffff;

    transform: rotate(-45deg);
}


/* =====================================================
                    LISTA FAQ
===================================================== */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =====================================================
                    ITEM FAQ
===================================================== */

.faq-item {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #dce9df;

    border-radius: 17px;

    box-shadow:
        0 10px 30px
        rgba(12, 72, 40, 0.045);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item:hover {
    border-color: #9acb8d;
}


.faq-item[open] {
    border-color: #82c36f;

    box-shadow:
        0 17px 40px
        rgba(12, 83, 44, 0.09);
}


/* =====================================================
                    PERGUNTA
===================================================== */

.faq-item summary {
    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 23px;

    cursor: pointer;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-question {
    display: flex;

    align-items: center;

    gap: 17px;
}


.faq-number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #edf8ef;

    border-radius: 11px;

    color: #08783f;

    font-size: 11px;

    font-weight: 900;
}


.faq-question h3 {
    color: #173323;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 800;
}


/* =====================================================
                    BOTÃO +
===================================================== */

.faq-plus {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f0f8f2;

    color: #08783f;

    font-size: 22px;

    font-weight: 400;

    transition: 0.35s ease;
}


.faq-item[open]
.faq-plus {
    background: #08783f;

    color: white;

    transform: rotate(45deg);
}


/* =====================================================
                    RESPOSTA
===================================================== */

.faq-answer {
    padding:
        0 75px 25px 82px;
}


.faq-answer p {
    max-width: 600px;

    padding-top: 19px;

    border-top:
        1px solid #e5eee7;

    color: #718078;

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 950px) {

    .faq-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .faq-intro {
        position: relative;

        top: 0;
    }

}


@media (max-width: 600px) {

    .faq-section {
        padding: 80px 0;
    }


    .faq-container {
        width: 92%;
    }


    .faq-intro h2 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .faq-item summary {
        min-height: 80px;

        padding: 17px;
    }


    .faq-question {
        gap: 12px;
    }


    .faq-number {
        width: 37px;
        height: 37px;
    }


    .faq-question h3 {
        font-size: 13px;
    }


    .faq-plus {
        width: 32px;
        height: 32px;

        font-size: 19px;
    }


    .faq-answer {
        padding:
            0 18px 21px 66px;
    }

}

/* =====================================================
                    FALE CONOSCO
===================================================== */

.contact-section {
    position: relative;

    width: 100%;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f5faf6 0%,
            #ffffff 55%,
            #f0f8f2 100%
        );
}


/* detalhe fundo */

.contact-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -260px;
    right: -190px;

    border-radius: 50%;

    border:
        80px solid rgba(73, 173, 70, 0.045);
}


/* =====================================================
                    CONTAINER
===================================================== */

.contact-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.95fr 0.75fr;

    align-items: center;

    gap: 100px;
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.contact-content {
    max-width: 610px;
}


.contact-tag {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #08783f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.contact-tag span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f6e9;

    border-radius: 50%;

    color: #08783f;

    font-size: 18px;
}


/* =====================================================
                        TÍTULO
===================================================== */

.contact-content h2 {
    margin-bottom: 22px;

    color: #173323;

    font-size:
        clamp(41px, 4vw, 57px);

    line-height: 1.05;

    letter-spacing: -2.4px;

    font-weight: 800;
}


.contact-content h2 span {
    display: block;

    color: #159447;
}


.contact-description {
    max-width: 540px;

    margin-bottom: 35px;

    color: #718078;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
                    CANAIS
===================================================== */

.contact-channels {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.contact-channel {
    width: 100%;

    min-height: 85px;

    display: grid;

    grid-template-columns:
        52px 1fr 38px;

    align-items: center;

    gap: 15px;

    padding: 15px;

    background: #ffffff;

    border:
        1px solid #dce9df;

    border-radius: 15px;

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 10px 30px
        rgba(11, 72, 40, 0.05);

    transition: 0.3s ease;
}


.contact-channel:hover {
    transform: translateX(6px);

    border-color: #82c36f;

    box-shadow:
        0 15px 35px
        rgba(11, 72, 40, 0.10);
}


/* ÍCONE */

.contact-channel-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #5cba49
        );

    color: #ffffff;

    font-size: 20px;
}


/* TEXTO */

.contact-channel-label {
    display: block;

    margin-bottom: 4px;

    color: #159447;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.contact-channel-info strong {
    display: block;

    margin-bottom: 4px;

    color: #173323;

    font-size: 14px;

    font-weight: 800;
}


.contact-channel-info small {
    display: block;

    color: #839087;

    font-size: 10px;
}


/* SETA */

.contact-channel-arrow {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf8ef;

    color: #08783f;

    font-size: 17px;

    transition: 0.3s ease;
}


.contact-channel:hover
.contact-channel-arrow {
    background: #08783f;

    color: #ffffff;

    transform: rotate(-45deg);
}


/* =====================================================
                    HORÁRIO
===================================================== */

.contact-hours {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 23px;

    padding-top: 22px;

    border-top:
        1px solid #dde8df;
}


.contact-hours-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f7ec;

    color: #08783f;

    font-size: 17px;
}


.contact-hours strong {
    display: block;

    margin-bottom: 3px;

    color: #173323;

    font-size: 11px;
}


.contact-hours span {
    display: block;

    color: #7b8980;

    font-size: 10px;
}


/* =====================================================
                    FORMULÁRIO
===================================================== */

.contact-form-wrapper {
    width: 100%;

    padding: 32px;

    background: #ffffff;

    border:
        1px solid #dce9df;

    border-radius: 24px;

    box-shadow:
        0 25px 65px
        rgba(10, 73, 40, 0.12);
}


/* =====================================================
                CABEÇALHO FORMULÁRIO
===================================================== */

.contact-form-header {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 27px;

    padding-bottom: 22px;

    border-bottom:
        1px solid #e1ebe3;
}


.contact-form-icon {
    width: 49px;
    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #61bb49
        );

    color: #ffffff;

    font-size: 25px;
}


.contact-form-header span {
    display: block;

    margin-bottom: 4px;

    color: #159447;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.contact-form-header h3 {
    color: #173323;

    font-size: 18px;

    font-weight: 800;
}


/* =====================================================
                    CAMPOS
===================================================== */

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.form-group label {
    color: #31473a;

    font-size: 10px;

    font-weight: 800;
}


.form-group input,
.form-group select {
    width: 100%;

    height: 51px;

    padding: 0 15px;

    outline: none;

    background: #f8fbf9;

    border:
        1px solid #dbe7de;

    border-radius: 10px;

    color: #31473a;

    font-family: inherit;

    font-size: 12px;

    transition: 0.25s ease;
}


.form-group input::placeholder {
    color: #a0aaa3;
}


.form-group input:focus,
.form-group select:focus {
    background: #ffffff;

    border-color: #159447;

    box-shadow:
        0 0 0 4px
        rgba(21, 148, 71, 0.08);
}


/* =====================================================
                    BOTÃO
===================================================== */

.contact-submit {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 4px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #08783f,
            #15974e
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(8, 120, 63, 0.20);

    transition: 0.3s ease;
}


.contact-submit span {
    font-size: 20px;
}


.contact-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(8, 120, 63, 0.29);
}


/* =====================================================
                    SEGURANÇA
===================================================== */

.contact-security {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: #849087;

    font-size: 9px;
}


.contact-security span {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f6eb;

    color: #08783f;

    font-size: 9px;

    font-weight: 900;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1000px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-content {
        max-width: 700px;
    }


    .contact-form-wrapper {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 80px 0;
    }


    .contact-container {
        width: 92%;
    }


    .contact-content h2 {
        font-size: 39px;

        letter-spacing: -1.6px;
    }


    .contact-form-wrapper {
        padding: 22px 18px;

        border-radius: 18px;
    }


    .contact-channel {
        grid-template-columns:
            46px 1fr 34px;
    }


    .contact-channel-icon {
        width: 46px;
        height: 46px;
    }

}

/* =====================================================
                        CTA FINAL
===================================================== */

.final-cta {
    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #043f26 0%,
            #076d3a 48%,
            #0b914c 100%
        );
}


/* =====================================================
                    DECORAÇÕES
===================================================== */

.final-cta-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.final-circle-one {
    width: 400px;
    height: 400px;

    top: -270px;
    right: 7%;

    border:
        65px solid rgba(255, 255, 255, 0.04);
}


.final-circle-two {
    width: 260px;
    height: 260px;

    left: -130px;
    bottom: -180px;

    background:
        rgba(112, 197, 77, 0.08);
}


/* =====================================================
                    CONTAINER
===================================================== */

.final-cta-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        80px 1fr auto;

    align-items: center;

    gap: 35px;
}


/* =====================================================
                        ÍCONE
===================================================== */

.final-cta-icon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid rgba(255, 255, 255, 0.17);

    border-radius: 20px;

    color: #a4df83;

    font-size: 40px;

    font-weight: 300;

    backdrop-filter: blur(10px);
}


/* =====================================================
                    CONTEÚDO
===================================================== */

.final-cta-content {
    max-width: 700px;
}


.final-cta-tag {
    display: block;

    margin-bottom: 10px;

    color: #a7df89;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.final-cta-content h2 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size:
        clamp(32px, 3.5vw, 47px);

    line-height: 1.05;

    letter-spacing: -1.8px;

    font-weight: 800;
}


.final-cta-content h2 span {
    color: #a4df83;
}


.final-cta-content p {
    max-width: 620px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
                        AÇÃO
===================================================== */

.final-cta-action {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;
}


.final-cta-button {
    min-width: 215px;

    min-height: 55px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    padding: 0 25px;

    background: #ffffff;

    border-radius: 11px;

    color: #08783f;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 15px 35px
        rgba(0, 38, 20, 0.20);

    transition: 0.3s ease;
}


.final-cta-button span {
    font-size: 20px;

    transition: 0.3s ease;
}


.final-cta-button:hover {
    transform: translateY(-4px);

    background: #eef9f0;

    box-shadow:
        0 20px 40px
        rgba(0, 35, 18, 0.28);
}


.final-cta-button:hover span {
    transform: translateX(4px);
}


.final-cta-action small {
    color:
        rgba(255, 255, 255, 0.50);

    font-size: 9px;
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 950px) {

    .final-cta-container {
        grid-template-columns:
            70px 1fr;

        gap: 25px;
    }


    .final-cta-action {
        grid-column: 2;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .final-cta {
        padding: 75px 0;
    }


    .final-cta-container {
        width: 92%;

        grid-template-columns: 1fr;

        text-align: center;

        gap: 22px;
    }


    .final-cta-icon {
        width: 65px;
        height: 65px;

        margin: 0 auto;
    }


    .final-cta-content h2 {
        font-size: 37px;

        letter-spacing: -1.4px;
    }


    .final-cta-content h2 span {
        display: block;
    }


    .final-cta-action {
        grid-column: auto;

        width: 100%;

        align-items: center;
    }


    .final-cta-button {
        width: 100%;
    }

}

/* =====================================================
                            FOOTER
===================================================== */

.footer {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #052f20 0%,
            #043b25 55%,
            #054b2c 100%
        );

    color: #ffffff;
}


/* DETALHE DE FUNDO */

.footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -260px;
    bottom: -260px;

    border-radius: 50%;

    border:
        70px solid rgba(255,255,255,0.025);

    pointer-events: none;
}


/* =====================================================
                        CONTAINER
===================================================== */

.footer-container {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =====================================================
                    PARTE PRINCIPAL
===================================================== */

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr 0.7fr 0.8fr 1fr;

    gap: 70px;

    padding: 85px 0 65px;
}


/* =====================================================
                        MARCA
===================================================== */

.footer-brand {
    max-width: 340px;
}


.footer-logo {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 22px;

    text-decoration: none;
}


.footer-logo-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        50% 50% 50% 13px;

    background:
        linear-gradient(
            135deg,
            #55b947,
            #86cf61
        );

    color: #ffffff;

    font-size: 31px;

    font-weight: 300;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.16);
}


.footer-logo-text {
    color: #ffffff;

    font-size: 24px;

    letter-spacing: -1px;
}


.footer-logo-text strong {
    font-weight: 800;
}


.footer-logo-text span {
    color: #91d66c;

    font-weight: 500;
}


.footer-brand > p {
    max-width: 320px;

    margin-bottom: 25px;

    color:
        rgba(255,255,255,0.57);

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
                    SEGURANÇA
===================================================== */

.footer-security {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 13px;

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.045);
}


.footer-security-icon {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(129, 207, 95, 0.13);

    color: #8ed16d;

    font-size: 12px;

    font-weight: 900;
}


.footer-security strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 10px;
}


.footer-security span {
    display: block;

    color:
        rgba(255,255,255,0.45);

    font-size: 8px;
}


/* =====================================================
                        COLUNAS
===================================================== */

.footer-column h3 {
    position: relative;

    margin-bottom: 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}


/* LINHA VERDE */

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    border-radius: 10px;

    background: #74c653;
}


/* =====================================================
                        LINKS
===================================================== */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}


.footer-links a {
    position: relative;

    color:
        rgba(255,255,255,0.56);

    text-decoration: none;

    font-size: 11px;

    transition: 0.25s ease;
}


.footer-links a::before {
    content: "→";

    position: absolute;

    left: -14px;

    opacity: 0;

    color: #85cf62;

    transition: 0.25s ease;
}


.footer-links a:hover {
    padding-left: 14px;

    color: #ffffff;
}


.footer-links a:hover::before {
    left: 0;

    opacity: 1;
}


/* =====================================================
                    ATENDIMENTO
===================================================== */

.footer-contact > p {
    margin-bottom: 13px;

    color:
        rgba(255,255,255,0.56);

    font-size: 11px;
}


.footer-contact-button {
    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 17px;

    margin-bottom: 23px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius: 9px;

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: 0.3s ease;
}


.footer-contact-button span {
    color: #91d66c;

    font-size: 17px;
}


.footer-contact-button:hover {
    background: #ffffff;

    color: #08783f;

    transform: translateY(-2px);
}


/* =====================================================
                        HORÁRIO
===================================================== */

.footer-hours {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.footer-hours span {
    margin-bottom: 3px;

    color: #85ce65;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


.footer-hours strong {
    color:
        rgba(255,255,255,0.78);

    font-size: 10px;
}


.footer-hours small {
    color:
        rgba(255,255,255,0.45);

    font-size: 9px;
}


/* =====================================================
                        DIVISOR
===================================================== */

.footer-divider {
    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,0.08);
}


/* =====================================================
                    PARTE INFERIOR
===================================================== */

.footer-bottom {
    min-height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-copyright p {
    color:
        rgba(255,255,255,0.39);

    font-size: 9px;
}


/* =====================================================
                    LINKS LEGAIS
===================================================== */

.footer-legal {
    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-legal a {
    color:
        rgba(255,255,255,0.43);

    text-decoration: none;

    font-size: 9px;

    transition: 0.25s ease;
}


.footer-legal a:hover {
    color: #ffffff;
}


.footer-legal span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.25);
}


/* =====================================================
                    VOLTAR AO TOPO
===================================================== */

.footer-top {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.06);

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;
}


.footer-top:hover {
    background: #70c450;

    border-color: #70c450;

    transform: translateY(-4px);
}


/* =====================================================
                    RESPONSIVO
===================================================== */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns:
            1.3fr 1fr 1fr;

        gap: 50px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }

}


@media (max-width: 700px) {

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 30px;

        padding: 70px 0 50px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-contact {
        grid-column: 1 / -1;
    }

}


@media (max-width: 500px) {

    .footer-container {
        width: 92%;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }


    .footer-bottom {
        padding: 25px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;
    }


    .footer-top {
        position: absolute;

        right: 0;
        bottom: 25px;
    }

}

