/* ============================ */
/*            BANNER            */
/* ============================ */
.banner {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* ===== LADO ESQUERDO — painel verde ===== */
.gradient-box {
    position: relative;
    z-index: 2;
    width: 52%;
    display: flex;
    align-items: center;

    padding-top: clamp(80px, 7vw, 100px);
    padding-bottom: clamp(80px, 7vw, 100px);

    padding-left: clamp(20px, 5vw, 96px);
    padding-right: clamp(20px, 5vw, 96px);

    background: linear-gradient(
        135deg,
        rgba(16, 102, 47, 0.90) 0%,
        rgba(30, 122, 57, 0.85) 90%,
        rgba(95, 165, 67, 0.75) 100%
    );

    clip-path: polygon(
        0 0,
        91.3% 0,
        90.8% 4%,
        89.5% 18%,
        88.8% 26%,
        88%   34%,
        87.3% 42%,
        86.7% 50%,
        86.3% 58%,
        86.5% 66%,
        87%   74%,
        87.8% 82%,
        88.5% 90%,
        89%   100%,
        0     100%
    );
}

/* ===== SLIDESHOW — fundo direito ===== */
.slideBox {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slideBox .truck-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slideBox .truck-image.active {
    opacity: 1;
}

/* ===== CONTEÚDO DO BANNER ===== */
.banner-content {
    width: max-content;
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-top: clamp(20px, 8vh, 100px);
}

.badge {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.banner-content h1 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 18px;
}

.banner-content h1 .highlight-green  { color: #7DE87D; }
.banner-content h1 .highlight-yellow { color: #FDD902; }

.banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* ===== BOTÕES ===== */
.banner-buttons {
    display: flex;
    gap: 14px;
}

.btn-primary {
    background: linear-gradient(90deg, #FFC402 0%, #FDD902 100%);
    border: none;
    padding: 14px 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #43512E;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s ease, transform .15s ease;
    font-family: "Roboto", sans-serif;
}
.btn-primary:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
    padding: 14px 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
    font-family: "Roboto", sans-serif;
}
.btn-outline:hover  { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }

/* ===== SCROLL HINT ===== */
.scroll-hint {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
}

.scroll-hint .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.65);
    border-radius: 12px;
    position: relative;
}

.scroll-hint .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ===== DOTS DO SLIDESHOW ===== */
.slide-dots {
    position: absolute;
    bottom: clamp(20px, 50vh, 180px);
    right: clamp(20px, 50vw, 510px);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.slide-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
    border: none;
    padding: 0;
}

.slide-dots .dot.active {
    background: #1B9849;
    transform: scale(1.25);
}

/* ===== WAVE DECORATIVA ===== */
.headerWave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

/* ===================================================
   TABLET — 768px a 1024px
   =================================================== */
@media (max-width: 1920px) {
    .banner-content {
        max-width: 80%;
    }
}
 
@media (max-width: 2000px) {
    .slide-dots {
        bottom: clamp(20px, 50vh, 150px);
        right: clamp(20px, 50vw, 350px);
    }
}

@media (max-width: 1400px) {
    .slide-dots {
        bottom: clamp(20px, 50vh, 130px);
        right: clamp(20px, 50vw, 250px);
    }
}

@media (max-width: 1250px) {
    .gradient-box {
        width: 60%;
    }
}

@media (max-width: 1024px) {
    .banner-content {
        max-width: 400px;
    }
    .gradient-box {
        width: 60%;
        clip-path: polygon(
            0 0,
            93% 0,
            91% 12%,
            89.5% 26%,
            88.5% 42%,
            88%   58%,
            88.5% 74%,
            90%   90%,
            91%   100%,
            0     100%
        );
    }
    .slide-dots {
        bottom: clamp(20px, 50vh, 110px);
        right: clamp(20px, 50vw, 200px);
    }
}

/* ===================================================
   MOBILE — até 900px
   Hero full-screen: imagem de fundo + overlay escuro + conteúdo centralizado
   =================================================== */
@media (max-width: 900px) {
    .slide-dots {
        display: none;
    }
    
    .banner {
        min-height: 100svh;
        align-items: flex-end;
    }

    .gradient-box {
        position: relative;
        z-index: 3;
        width: 100%;
        clip-path: none;
        background: linear-gradient(
            to top,
            rgba(10, 70, 30, 0.96) 0%,
            rgba(14, 88, 38, 0.82) 55%,
            rgba(16, 102, 47, 0.45) 80%,
            transparent             100%
        );
        padding: 48px clamp(20px, 6vw, 40px) clamp(48px, 8vh, 80px);
        align-items: flex-end;
    }

    .slideBox {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .banner-content {
        max-width: 100%;
        margin-top: 0;
    }

    .banner-content h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .banner-content p {
        max-width: 100%;
        font-size: 14px;
    }

    .slide-dots {
        bottom: clamp(96px, 14vh, 140px);
        right: 50%;
        transform: translateX(50%);
    }

    .scroll-hint {
        display: none;
    }

    .headerWave {
        display: none;
    }
}

/* ===================================================
   TELAS GRANDES — acima de 1600px
   =================================================== */
@media (min-width: 1600px) {
    .banner-content h1 {
        font-size: 50px;
    }

    .banner-content p {
        font-size: 16px;
        max-width: 400px;
    }
}

@media (max-width: 460px) {
    .banner-buttons {
        flex-direction: column;
    }
}



/* ============================ */
/*            ABOUT             */
/* ============================ */
.about {
    display: flex;
    align-items: center;
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
    background: white;
}

.about .about__image {
    width: 450px;
    height: auto;
    border-radius: 8px;
}

.about-images {
    position: relative;
    flex-shrink: 0;
}

.about__tag1 {
    position: absolute;
    width: 80px;
    top: -20px;
    left: -30px;
}

.about-card {
    width: max-content;
    background: #F9BC06;
    padding: 18px 24px;
    border-radius: 10px;
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.about-card p:nth-last-of-type(2) {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.about-card p:nth-last-of-type(1) {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.about-stats {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stats-single {
    width: calc(50% - 10px);
    padding: 20px;
    border-radius: 7px;
    border: 1px solid #D3D3D3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #6D6D6D;
}

.stats-single p:nth-last-of-type(2) {
    color: #1B9849;
    font-weight: 700;
    font-size: 25px;
}

/* About — tablet */
@media (max-width: 1024px) {
    .about {
        gap: 40px;
    }

    .about .about__image {
        width: 340px !important;
    }
}

/* About — mobile landscape / tablet pequeno */
@media (max-width: 860px) {
    .about {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-images {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .about .about__image {
        width: 100% !important;
    }

    .about-content {
        width: 100%;
    }

    .about__tag1 {
        left: 0;
    }
}

/* About — mobile pequeno */
@media (max-width: 480px) {
    .stats-single {
        width: 100%;
    }

    .about-card {
        right: 0;
        bottom: -24px;
    }
}




/* ============================ */
/*           SERVICES           */
/* ============================ */
.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    background: white;
}

.service-card {
    width: calc(100% / 3 - 14px);
    border: 1px solid #D3D3D3;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card h3 {
    color: #111827;
    font-weight: 600;
}

.service-card i {
    color: #1B9849;
    font-size: 20px;
}

.service-card p {
    color: #6D6D6D;
    line-height: 1.6;
}

.service-card a {
    color: #1B9849;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.service-card a i {
    font-size: 13px;
}

.card--highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1B9849;
}

.card--highlight h3,
.card--highlight p {
    color: white !important;
}

.card--highlight p {
    font-weight: 300;
}

.card--highlight h3 {
    font-weight: 700;
    font-size: 20px;
}

.card--highlight > a {
    color: #43512E;
    width: 100%
}

/* Services — tablet */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 10px);
    }
}

/* Services — mobile */
@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }
}




/* ============================ */
/*            GALERY            */
/* ============================ */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: white;
}

.structure {
    display: flex;
    gap: 20px;
}

.structure > img {
    width: 600px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.structure-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.structure-images img {
    width: calc(50% - 10px);
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* Structure — tablet */
@media (max-width: 1100px) {
    .structure > img {
        width: 420px;
    }
}

/* Structure — tablet pequeno */
@media (max-width: 860px) {
    .structure {
        flex-direction: column;
    }

    .structure > img {
        width: 100%;
        max-height: 340px;
        object-fit: cover;
    }

    .structure-images {
        width: 100%;
    }

    .structure-images img {
        height: 160px;
    }
}

/* Structure — mobile */
@media (max-width: 480px) {
    .structure-images img {
        width: 100%;
        height: 200px;
    }
}




/* ============================ */
/*             Area             */
/* ============================ */
.sectionArea {
    padding-top: 76px;
    padding-bottom: 76px;
    background-image: url('../images/area-bg.webp');
    background-size: cover;
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.sectionArea .sectionArea--left {
    position: relative;
    flex-shrink: 0;
}

.sectionArea .sectionArea--left .mainImg {
    width: 500px;
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
}

.sectionArea--left .logoImg {
    width: 70px !important;
    position: absolute;
    top: -20px;
    left: -20px;
}

.sectionArea--right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sectionArea--right h2 {
    color: #9CFFC0;
    font-weight: 500;
}

.sectionArea--right h3 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin: 5px 0;
}

.sectionArea--right > p {
    color: #ffffff;
    line-height: 1.4;
}

.areaBox {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.area-single {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.area-single i {
    font-size: 10px;
    color: #F9BC06;
}

/* Area — tablet */
@media (max-width: 1100px) {
    .sectionArea {
        gap: 40px;
    }

    .sectionArea .sectionArea--left .mainImg {
        width: 380px;
        height: 380px;
    }

    .sectionArea--right h2 {
        font-size: 30px;
    }
}

/* Area — tablet pequeno */
@media (max-width: 860px) {
    .sectionArea {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

    .sectionArea .sectionArea--left {
        width: 100%;
    }

    .sectionArea .sectionArea--left .mainImg {
        width: 100%;
        height: 300px;
    }

    .sectionArea--left .logoImg {
        left: 0;
        top: -16px;
    }
}

/* Area — mobile */
@media (max-width: 480px) {
    .sectionArea {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .sectionArea--right h2 {
        font-size: 26px;
    }

    .area-single {
        width: 100%;
    }
}




/* ============================ */
/*           Feedback           */
/* ============================ */
/*.feedbacks{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feedback-card {
    width: calc(100% / 3 - 20px);
    border: 1px solid #D3D3D3;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}*/




/* ============================ */
/*              Blog            */
/* ============================ */
.blog-posts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-card {
    width: 400px;

    border: 1px solid #D3D3D3;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-content h3 {
    color: #111827;
    font-weight: 600;
}

.blog-content p {
    color: #6D6D6D;
    font-size: 15px;
    line-height: 1.5;
}

.blog-content a {
    color: #1B9849;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.blog-content a i {
    font-size: 13px;
}

.blog-buttons {
    width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}




/* ============================ */
/*     SECTION (padding geral)  */
/* ============================ */
@media (max-width: 650px) {
    .blog-buttons,
    .blog-card {
        width: 100%;
    }
    .blog-posts {
        flex-direction: column;
    }
}

@media (max-width: 860px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}