/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #35443f;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

:root {

    --verde: #15322d;

    --verde-escuro: #0d211d;

    --verde-medio: #24483f;

    --verde-claro: #31594f;

    --bege: #c7aa7b;

    --bege-claro: #eee5d5;

    --bege-suave: #f7f2e9;

    --offwhite: #fcfaf6;

    --branco: #ffffff;

    --texto: #35443f;

    --texto-claro: #69746f;

    --borda: #e6dfd2;

    --whatsapp: #25D366;

}

.container {

    width: min(1180px, 92%);

    margin: 0 auto;

}

section {

    padding: 100px 0;

}


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

.header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: var(--verde);

    border-bottom: 1px solid
    rgba(199,170,123,.25);

}

.header-inner {

    height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    display: flex;

    align-items: center;

}

.logo img {

    width: 225px;

    height: auto;

}

.nav {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav a {

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    transition: .3s ease;

}

.nav a:hover {

    color: var(--bege);

}

.nav-cta {

    background: var(--bege);

    color: var(--verde) !important;

    padding: 13px 22px;

    border-radius: 5px;

}

.nav-cta:hover {

    background: var(--bege-claro);

}

.menu-btn {

    display: none;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 28px;

    cursor: pointer;

}


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

.hero {

    position: relative;

    overflow: hidden;

    background:

    radial-gradient(
        circle at 80% 20%,
        rgba(199,170,123,.20),
        transparent 30%
    ),

    linear-gradient(
        135deg,
        #f7f2e9 0%,
        #ffffff 75%
    );

    padding: 85px 0 90px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: center;

}

.hero-content {

    position: relative;

    z-index: 3;

    max-width: 620px;

}

.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--bege);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 22px;

}

.hero-label::before {

    content: "";

    width: 35px;

    height: 2px;

    background: var(--bege);

}

.hero h1 {

    color: var(--verde);

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

    line-height: 1.08;

    letter-spacing: -2.8px;

    margin-bottom: 25px;

}

.hero h1 span {

    color: var(--bege);

}

.hero-description {

    color: var(--texto-claro);

    font-size: 18px;

    max-width: 570px;

    margin-bottom: 34px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 26px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;

}

.btn-primary {

    background: var(--verde);

    color: #ffffff;

}

.btn-primary:hover {

    background: var(--verde-medio);

    transform: translateY(-2px);

}

.btn-secondary {

    border: 1px solid var(--verde);

    color: var(--verde);

}

.btn-secondary:hover {

    background: var(--verde);

    color: #ffffff;

}


/* =========================================================
   ILUSTRAÇÃO HERO
========================================================= */

.hero-visual {

    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-visual::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: var(--bege-claro);

    border-radius: 50%;

    opacity: .55;

    z-index: 0;

}

.hero-visual::after {

    content: "";

    position: absolute;

    right: 3%;

    bottom: 3%;

    width: 90px;

    height: 90px;

    border: 1px solid
    rgba(199,170,123,.55);

    border-radius: 50%;

    z-index: 1;

}

.hero-illustration {

    position: relative;

    z-index: 2;

    width: 110%;

    max-width: 680px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 35px
        rgba(21,50,45,.13)
    );

    transition: transform .5s ease;

}

.hero-illustration:hover {

    transform: translateY(-7px);

}


/* =========================================================
   NÚMEROS
========================================================= */

.numbers {

    padding: 55px 0;

    background: #ffffff;

    border-bottom: 1px solid var(--borda);

}

.numbers-grid {

    display: grid;

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

}

.number {

    text-align: center;

    padding: 10px 20px;

    border-right: 1px solid var(--borda);

}

.number:last-child {

    border-right: 0;

}

.number strong {

    display: block;

    color: var(--verde);

    font-size: 43px;

    line-height: 1;

    margin-bottom: 10px;

}

.number span {

    color: var(--texto-claro);

    font-size: 14px;

}


/* =========================================================
   TÍTULOS
========================================================= */

.section-label {

    color: var(--bege);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 15px;

}

.section-title {

    color: var(--verde);

    font-size: clamp(32px,4vw,49px);

    line-height: 1.15;

    letter-spacing: -1.8px;

    margin-bottom: 20px;

}

.section-text {

    color: var(--texto-claro);

    font-size: 17px;

}

.section-center {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


/* =========================================================
   PARCERIA
========================================================= */

.partnership {

    position: relative;

    overflow: hidden;

    background: var(--verde);

}

.partnership-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.partnership-graphic {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

    radial-gradient(
        circle at center,
        rgba(199,170,123,.17),
        transparent 65%
    );

    border-radius: 25px;

    overflow: hidden;

}

.partnership-graphic::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border: 1px solid
    rgba(199,170,123,.28);

    border-radius: 50%;

}

.partnership-graphic::after {

    content: "";

    position: absolute;

    width: 470px;

    height: 470px;

    border: 1px dashed
    rgba(255,255,255,.09);

    border-radius: 50%;

}

.partnership-graphic img {

    position: relative;

    z-index: 2;

    width: 110%;

    max-width: 650px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        0 20px 35px
        rgba(0,0,0,.18)
    );

}

.partnership .section-title {

    color: #ffffff;

}

.partnership .section-text {

    color:
    rgba(255,255,255,.68);

    margin-bottom: 18px;

}

.partnership-highlight {

    margin-top: 30px;

    padding: 24px;

    border-left: 3px solid var(--bege);

    background:
    rgba(255,255,255,.05);

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;

}


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

.services {

    background: var(--bege-suave);

}

.services-grid {

    display: grid;

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

    gap: 20px;

}

.service-card {

    background: #ffffff;

    padding: 32px;

    border-radius: 10px;

    border: 1px solid var(--borda);

    transition: .3s ease;

}

.service-card:hover {

    transform: translateY(-6px);

    border-color: var(--bege);

    box-shadow:
    0 20px 50px
    rgba(21,50,45,.08);

}

.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--bege-claro);

    border-radius: 50%;

    margin-bottom: 22px;

}

.service-icon::before {

    content: "";

    width: 19px;

    height: 19px;

    border: 2px solid var(--verde);

    border-radius: 4px;

}

.service-card h3 {

    color: var(--verde);

    font-size: 19px;

    line-height: 1.3;

    margin-bottom: 12px;

}

.service-card p {

    color: var(--texto-claro);

    font-size: 14px;

}


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

.differentials {

    background: #ffffff;

}

.differentials-grid {

    display: grid;

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

    gap: 20px;

}

.differential {

    padding: 30px;

    background: var(--offwhite);

    border-top: 2px solid var(--bege);

}

.differential-number {

    color: var(--bege);

    font-size: 13px;

    font-weight: 800;

}

.differential h3 {

    color: var(--verde);

    font-size: 18px;

    margin: 18px 0 10px;

}

.differential p {

    color: var(--texto-claro);

    font-size: 14px;

}


/* =========================================================
   SOBRE GISELE
========================================================= */

.about {

    background: var(--bege-suave);

}

.about-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    height: 570px;

    object-fit: cover;

    border-radius: 22px;

}

.about-badge {

    position: absolute;

    right: -25px;

    bottom: 25px;

    max-width: 200px;

    padding: 23px;

    background: var(--verde);

    color: #ffffff;

    border-radius: 10px;

    box-shadow:
    0 20px 50px
    rgba(21,50,45,.15);

}

.about-badge strong {

    display: block;

    color: var(--bege);

    font-size: 30px;

    line-height: 1;

    margin-bottom: 7px;

}

.about-badge span {

    font-size: 12px;

}

.about-content p {

    color: var(--texto-claro);

    font-size: 16px;

    margin-bottom: 17px;

}

.quote {

    margin-top: 30px;

    padding: 25px;

    background: #ffffff;

    border-left: 3px solid var(--bege);

}

.quote p {

    color: var(--verde);

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 8px;

}

.quote span {

    color: var(--texto-claro);

    font-size: 13px;

}


/* =========================================================
   DEPOIMENTOS
========================================================= */

.testimonials {

    background: var(--verde);

}

.testimonials .section-title {

    color: #ffffff;

}

.testimonials .section-text {

    color:
    rgba(255,255,255,.65);

}

.testimonials-grid {

    display: grid;

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

    gap: 20px;

}

.testimonial {

    padding: 32px;

    border: 1px solid
    rgba(199,170,123,.20);

    background:
    rgba(255,255,255,.04);

    border-radius: 10px;

}

.stars {

    color: var(--bege);

    letter-spacing: 3px;

    margin-bottom: 18px;

}

.testimonial p {

    color:
    rgba(255,255,255,.73);

    font-size: 15px;

    margin-bottom: 25px;

}

.testimonial strong {

    display: block;

    color: #ffffff;

}

.testimonial span {

    color:
    rgba(255,255,255,.45);

    font-size: 12px;

}


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

.cta {

    background: var(--bege-claro);

}

.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}

.cta-content {

    max-width: 720px;

}

.cta h2 {

    color: var(--verde);

    font-size: clamp(32px,4vw,49px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;

}

.cta p {

    color: var(--texto-claro);

    font-size: 16px;

}


/* =========================================================
   BLOG DINÂMICO WORDPRESS
========================================================= */

.blog {

    background: #ffffff;

}

.blog-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;

}

.blog-header-content {

    max-width: 700px;

}

.blog-header .section-title {

    margin-bottom: 15px;

}

.blog-header .section-text {

    max-width: 650px;

}

.blog-all {

    flex-shrink: 0;

}

.blog-grid {

    display: grid;

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

    gap: 25px;

}

.blog-card {

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--borda);

    border-radius: 12px;

    transition: .3s ease;

}

.blog-card:hover {

    transform: translateY(-6px);

    box-shadow:
    0 20px 50px
    rgba(21,50,45,.10);

    border-color: var(--bege);

}

.blog-thumb {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:

    linear-gradient(
        135deg,
        var(--verde),
        var(--verde-medio)
    );

}

.blog-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}

.blog-card:hover
.blog-thumb img {

    transform: scale(1.05);

}

.blog-no-image {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bege);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.blog-content {

    padding: 27px;

}

.blog-category {

    color: var(--bege);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 10px;

}

.blog-content h3 {

    color: var(--verde);

    font-size: 20px;

    line-height: 1.35;

    margin-bottom: 12px;

}

.blog-content h3 a:hover {

    color: var(--bege);

}

.blog-excerpt {

    color: var(--texto-claro);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;

}

.blog-read {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--verde);

    font-size: 13px;

    font-weight: 700;

}

.blog-read:hover {

    color: var(--bege);

}

.blog-empty {

    grid-column: 1 / -1;

    text-align: center;

    padding: 50px;

    background: var(--bege-suave);

    border-radius: 10px;

    color: var(--texto-claro);

}


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

.footer {

    background: var(--verde-escuro);

    color: #ffffff;

    padding: 70px 0 25px;

}

.footer-grid {

    display: grid;

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

    gap: 50px;

    padding-bottom: 45px;

}

.footer-logo {

    width: 215px;

    margin-bottom: 20px;

}

.footer p {

    color:
    rgba(255,255,255,.55);

    font-size: 14px;

    max-width: 300px;

}

.footer h4 {

    color: var(--bege);

    font-size: 15px;

    margin-bottom: 18px;

}

.footer ul {

    list-style: none;

}

.footer li {

    color:
    rgba(255,255,255,.55);

    font-size: 13px;

    margin-bottom: 10px;

}

.footer li a:hover {

    color: var(--bege);

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid
    rgba(199,170,123,.18);

    color:
    rgba(255,255,255,.4);

    font-size: 11px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 999;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--whatsapp);

    color: #ffffff;

    font-size: 25px;

    box-shadow:
    0 10px 30px
    rgba(37,211,102,.3);

    transition: .3s ease;

}

.whatsapp:hover {

    transform: scale(1.08);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width: 1000px) {

    .menu-btn {

        display: block;

    }

    .nav {

        display: none;

        position: absolute;

        top: 84px;

        left: 0;

        right: 0;

        padding: 25px;

        background: var(--verde);

        flex-direction: column;

        align-items: stretch;

        border-top: 1px solid
        rgba(199,170,123,.20);

    }

    .nav.active {

        display: flex;

    }

    .nav a {

        padding: 10px;

    }

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .hero-content {

        max-width: 700px;

    }

    .hero-visual {

        min-height: auto;

        margin-top: 20px;

    }

    .hero-illustration {

        max-width: 650px;

    }

    .partnership-grid {

        grid-template-columns: 1fr;

    }

    .partnership-graphic {

        min-height: 400px;

    }

    .services-grid {

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

    }

    .differentials-grid {

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

    }

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-image {

        max-width: 600px;

    }

    .cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-grid {

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

    }

    .blog-header {

        align-items: flex-start;

        flex-direction: column;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 650px) {

    section {

        padding: 70px 0;

    }

    .header-inner {

        height: 72px;

    }

    .nav {

        top: 72px;

    }

    .logo img {

        width: 185px;

    }

    .hero {

        padding: 65px 0;

    }

    .hero h1 {

        font-size: 41px;

        letter-spacing: -1.8px;

    }

    .hero-description {

        font-size: 16px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .btn {

        width: 100%;

    }

    .hero-visual {

        min-height: 320px;

    }

    .hero-visual::before {

        width: 280px;

        height: 280px;

    }

    .hero-illustration {

        width: 115%;

        max-width: 500px;

    }

    .numbers-grid {

        grid-template-columns: 1fr;

    }

    .number {

        padding: 25px;

        border-right: 0;

        border-bottom: 1px solid var(--borda);

    }

    .number:last-child {

        border-bottom: 0;

    }

    .services-grid,

    .differentials-grid,

    .testimonials-grid,

    .blog-grid {

        grid-template-columns: 1fr;

    }

    .partnership-graphic {

        min-height: 300px;

    }

    .partnership-graphic img {

        width: 115%;

    }

    .partnership-graphic::before {

        width: 250px;

        height: 250px;

    }

    .partnership-graphic::after {

        width: 330px;

        height: 330px;

    }

    .about-image img {

        height: 450px;

    }

    .about-badge {

        right: 15px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        flex-direction: column;

    }

    .blog-header {

        margin-bottom: 35px;

    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

:focus-visible {

    outline: 3px solid var(--bege);

    outline-offset: 3px;

}
html,body{margin:0!important;padding:0!important}body.admin-bar .header{top:32px}@media(max-width:782px){body.admin-bar .header{top:46px}}
.humanizze-content-wrap{padding:70px 0 90px;background:#fff}.humanizze-content-container{max-width:900px}.humanizze-article-title{color:var(--verde);font-size:clamp(34px,5vw,56px);line-height:1.15;margin-bottom:14px}.humanizze-article-meta{color:var(--texto-claro);font-size:14px;margin-bottom:28px}.humanizze-featured-image{margin-bottom:30px}.humanizze-featured-image img{width:100%;border-radius:14px}.humanizze-article-content{color:var(--texto);font-size:17px}.humanizze-article-content p,.humanizze-article-content ul,.humanizze-article-content ol,.humanizze-article-content blockquote{margin-bottom:1.4em}.humanizze-article-content h2,.humanizze-article-content h3,.humanizze-article-content h4{color:var(--verde);margin:1.6em 0 .7em}.humanizze-post-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.humanizze-post-card{overflow:hidden;border:1px solid var(--borda);border-radius:12px;background:#fff}.humanizze-post-thumb{display:block;height:220px;overflow:hidden}.humanizze-post-thumb img{width:100%;height:100%;object-fit:cover}.humanizze-post-card-content{padding:24px}.humanizze-post-card h2{color:var(--verde);font-size:21px;line-height:1.35;margin-bottom:12px}@media(max-width:900px){.humanizze-post-list{grid-template-columns:1fr 1fr}}@media(max-width:650px){.humanizze-content-wrap{padding:45px 0 70px}.humanizze-post-list{grid-template-columns:1fr}}


/* =========================================================
   HOME EM LARGURA TOTAL — HELLO ELEMENTOR
========================================================= */

body.home,
body.home #page,
body.home .site,
body.home .site-content,
body.home .content-area,
body.home .humanizze-front-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .humanizze-front-page {
    display: block;
    overflow: hidden;
}

body.home .humanizze-front-page > section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*
As faixas ocupam 100% da tela.
A classe .container continua limitando somente o conteúdo interno,
preservando o layout original e o alinhamento visual.
*/
body.home .humanizze-front-page > section > .container {
    width: min(1180px, 92%) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Remove limites globais do tema pai que possam atingir a página inicial. */
body.home main.site-main,
body.home .site-main {
    max-width: none !important;
    width: 100% !important;
}


/* =========================================================
   CORREÇÃO DOS LINKS DO RODAPÉ
========================================================= */

.footer a,
.footer a:link,
.footer a:visited {
    color: #F5EFE2 !important;
    text-decoration: none !important;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
    color: #DCC79B !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: #FFFFFF !important;
}

.footer p,
.footer li,
.footer span,
.footer address {
    color: #F5EFE2;
}


/* =========================================================
   REFORÇO: HOME FULL-WIDTH
========================================================= */

body.home #page,
body.home .site,
body.home .site-content,
body.home .content-area,
body.home .humanizze-front-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .humanizze-front-page > section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.home .humanizze-front-page > section > .container {
    width: min(1180px, 92%) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   PÁGINA DE CONTEÚDOS — /conteudos/
========================================================= */

.humanizze-blog-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.humanizze-blog-hero {
    width: 100%;
    padding: 90px 0 70px;
    background: #F4F7F1;
    text-align: center;
}

.humanizze-blog-hero .container,
.humanizze-blog-list .container {
    width: min(1180px, 92%);
    max-width: 1180px;
    margin: 0 auto;
}

.humanizze-blog-hero h1 {
    max-width: 800px;
    margin: 12px auto 18px;
}

.humanizze-blog-hero p {
    max-width: 720px;
    margin: 0 auto;
}

.humanizze-blog-list {
    width: 100%;
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(24, 64, 44, 0.10);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(20, 50, 35, 0.08);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 26px;
}

.blog-card-meta {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: .72;
}

.blog-card-title {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.25;
}

.blog-card-title a,
.blog-card-title a:visited {
    color: inherit;
    text-decoration: none;
}

.blog-card-excerpt {
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    font-weight: 700;
    text-decoration: none;
}

.humanizze-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.humanizze-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.humanizze-pagination .current {
    font-weight: 700;
}

.humanizze-empty-content {
    padding: 60px 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .humanizze-blog-hero {
        padding: 65px 0 50px;
    }

    .humanizze-blog-list {
        padding: 55px 0;
    }

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


/* =========================================================
   FERRAMENTAS ONLINE
========================================================= */

.tools-section {
    width: 100%;
    padding: 90px 0;
    background: #F4F7F1;
}

.tools-section .container {
    width: min(1180px, 92%);
    max-width: 1180px;
    margin: 0 auto;
}

.tools-section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.tools-section-header h2 {
    margin: 12px 0 16px;
}

.tools-section-header p {
    margin: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(24, 64, 44, 0.10);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(20, 50, 35, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 64, 44, 0.20);
    box-shadow: 0 18px 42px rgba(20, 50, 35, 0.13);
}

.tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(31, 91, 64, 0.10);
    color: #1F5B40;
}

.tool-icon svg {
    width: 30px;
    height: 30px;
}

.tool-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.25;
}

.tool-card p {
    margin: 0 0 24px;
}

.tool-link,
.tool-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #1F5B40 !important;
    font-weight: 700;
    text-decoration: none;
}

.tool-link:hover,
.tool-link:focus {
    color: #153F2C !important;
}

.tool-link span {
    transition: transform .2s ease;
}

.tool-link:hover span {
    transform: translateX(4px);
}

.tools-disclaimer {
    max-width: 780px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 14px;
    opacity: .72;
}

.footer-tools ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-tools li + li {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tools-section {
        padding: 65px 0;
    }

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

    .tool-card {
        padding: 26px;
    }
}


/* =========================================================
   RODAPÉ RESTAURADO — V13
========================================================= */

.footer {
    width: 100%;
    padding: 70px 0 0;
}

.footer .container {
    width: min(1400px, 92%);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 1fr));
    gap: 50px;
    align-items: start;
    padding-bottom: 55px;
}

.footer-column h3 {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.3;
}

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

.footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo-image {
    width: auto;
    max-width: 270px;
    max-height: 90px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 34px;
    font-weight: 700;
}

.footer-description {
    max-width: 380px;
    margin: 0;
    line-height: 1.65;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 12px;
}

.footer a,
.footer a:visited {
    text-decoration: none;
}

.footer-contact-list a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    .footer-logo-image {
        max-width: 230px;
    }

    .footer-bottom {
        text-align: left;
    }
}


/* =========================================================
   LINKS DO CRÉDITO E WHATSAPP FLUTUANTE — V14
========================================================= */

.footer .start-media-link,
.footer .start-media-link:visited {
    color: inherit !important;
    font-weight: 600;
    text-decoration: none;
}

.footer .start-media-link:hover,
.footer .start-media-link:focus {
    text-decoration: underline;
}

.humanizze-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.humanizze-whatsapp-float:hover,
.humanizze-whatsapp-float:focus {
    color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
}

.humanizze-whatsapp-float svg {
    width: 34px;
    height: 34px;
}

@media (max-width: 640px) {
    .humanizze-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .humanizze-whatsapp-float svg {
        width: 31px;
        height: 31px;
    }
}


/* =========================================================
   BARRA LEGAL DO RODAPÉ — V15
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
}

.footer-bottom-left {
    min-width: 0;
    white-space: nowrap;
}

.footer-bottom-left,
.footer-bottom-left span {
    line-height: 1.5;
}

.footer-bottom-right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-bottom a,
.footer-bottom a:visited {
    color: inherit !important;
    text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    text-decoration: underline;
}

.footer .start-media-link {
    font-weight: 600;
}

@media (max-width: 900px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        white-space: normal;
    }

    .footer-bottom-right {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-left {
        width: 100%;
    }

    .footer-bottom-right {
        width: 100%;
        gap: 8px;
    }
}


/* =========================================================
   HUMANIZZE SITE COMPLETO — V20
========================================================= */

.premium-section {
    width: 100%;
    padding: 90px 0;
}

.premium-section .container,
.trust-strip .container {
    width: min(1180px, 92%);
    max-width: 1180px;
    margin: 0 auto;
}

.premium-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.premium-heading h2 {
    margin: 12px 0 16px;
}

.premium-heading p {
    margin: 0;
}

.premium-grid {
    display: grid;
    gap: 26px;
}

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

.premium-card,
.testimonial-card,
.quote-form {
    background: #fff;
    border: 1px solid rgba(25, 75, 51, .11);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(17, 54, 37, .08);
}

.premium-card {
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(17, 54, 37, .13);
}

.premium-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(31, 91, 64, .10);
    color: #1f5b40;
    font-weight: 800;
}

.premium-card h3 {
    margin: 0 0 12px;
}

.premium-card p {
    margin: 0;
}

.quote-section,
.testimonials-premium,
.faq-section {
    background: #f4f7f1;
}

.quote-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.quote-copy h2 {
    margin: 12px 0 18px;
}

.quote-benefits {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.quote-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
}

.quote-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 800;
    color: #1f5b40;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 34px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full,
.quote-submit,
.form-note {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 700;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    border: 1px solid rgba(25, 75, 51, .22);
    border-radius: 10px;
    background: #fff;
}

.form-note {
    margin: -4px 0 0;
    font-size: 13px;
    text-align: center;
    opacity: .72;
}

.service-premium-card {
    display: flex;
    flex-direction: column;
}

.service-premium-card a {
    display: inline-flex;
    margin-top: 22px;
    font-weight: 700;
    text-decoration: none;
}

.testimonial-card {
    margin: 0;
    padding: 30px;
}

.testimonial-stars {
    margin-bottom: 18px;
    letter-spacing: 3px;
    color: #b89556;
}

.testimonial-card p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-card footer span {
    opacity: .72;
}

.testimonial-note {
    margin: 26px auto 0;
    text-align: center;
    font-size: 13px;
    opacity: .66;
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 58px;
    align-items: start;
}

.faq-heading {
    margin: 0;
    text-align: left;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 0 22px;
    background: #fff;
    border: 1px solid rgba(25, 75, 51, .12);
    border-radius: 14px;
}

.faq-list summary {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 750;
}

.faq-list details p {
    margin: 0;
    padding: 0 0 20px;
}

.trust-strip {
    width: 100%;
    padding: 32px 0;
    background: #123f2e;
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.trust-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-grid strong {
    font-size: 20px;
}

.trust-grid span {
    opacity: .82;
}

@media (max-width: 950px) {
    .premium-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .premium-section {
        padding: 65px 0;
    }

    .premium-grid-3,
    .trust-grid,
    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 25px;
    }

    .form-field-full,
    .quote-submit,
    .form-note {
        grid-column: auto;
    }

    .premium-card,
    .testimonial-card {
        padding: 25px;
    }
}


/* =========================================================
   CORREÇÃO DE LAYOUT — V22.2
   Mantém cards amplos no desktop e responsivos no mobile.
========================================================= */

body.home .humanizze-front-page > section > .container,
body.home .humanizze-front-page .container {
    width: min(1320px, calc(100% - 64px));
    max-width: 1320px;
}

.differentials .section-center,
.testimonials .section-center {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.differential {
    min-width: 0;
    padding: 38px 34px;
}

.differential h3 {
    font-size: 21px;
    line-height: 1.25;
}

.differential p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.testimonial {
    min-width: 0;
    padding: 38px 36px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.65;
}

.trust-strip {
    padding: 38px 0;
}

.trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px;
    align-items: center;
    text-align: center;
}

.trust-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    body.home .humanizze-front-page > section > .container,
    body.home .humanizze-front-page .container {
        width: min(100% - 40px, 1120px);
    }

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

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

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

@media (max-width: 760px) {
    body.home .humanizze-front-page > section > .container,
    body.home .humanizze-front-page .container {
        width: min(100% - 30px, 720px);
    }

    .differentials-grid,
    .testimonials-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px 16px;
    }

    .differential,
    .testimonial {
        padding: 30px 26px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Rolagem suave para links internos e compensação do cabeçalho fixo */
html {
    scroll-behavior: smooth;
}

#ferramentas {
    scroll-margin-top: 110px;
}


/* Destaque do Instagram */
.instagram-highlight {
    padding: 84px 0;
    background:
        radial-gradient(circle at top right, rgba(35, 125, 82, 0.13), transparent 34%),
        linear-gradient(135deg, #f7fbf8 0%, #ffffff 100%);
}

.instagram-highlight-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 56px;
}

.instagram-highlight-content h2 {
    max-width: 720px;
    margin: 12px 0 16px;
}

.instagram-highlight-content > p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #5a655f;
    font-size: 1.06rem;
    line-height: 1.75;
}

.instagram-highlight-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.instagram-highlight-topics li {
    padding: 10px 15px;
    border: 1px solid rgba(27, 112, 71, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #24583f;
    font-size: 0.94rem;
    font-weight: 600;
}

.instagram-highlight-action {
    display: flex;
    justify-content: flex-end;
}

.instagram-profile-card {
    width: 100%;
    max-width: 390px;
    padding: 34px;
    border: 1px solid rgba(27, 112, 71, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(25, 72, 49, 0.12);
    text-align: center;
}

.instagram-profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: #edf7f1;
    color: #1f754d;
}

.instagram-profile-card strong {
    display: block;
    margin-bottom: 10px;
    color: #173d2c;
    font-size: 1.15rem;
}

.instagram-profile-card > span:not(.instagram-profile-icon) {
    display: block;
    margin-bottom: 24px;
    color: #68736d;
    line-height: 1.6;
}

.instagram-profile-card .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .instagram-highlight {
        padding: 64px 0;
    }

    .instagram-highlight-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .instagram-highlight-action {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .instagram-highlight {
        padding: 52px 0;
    }

    .instagram-profile-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .instagram-highlight-topics li {
        width: 100%;
        text-align: center;
    }
}
