:root {
    --amarelo: #ffd400;
    --amarelo-claro: #fff7bf;
    --preto: #111111;
    --cinza-escuro: #252525;
    --cinza: #666666;
    --cinza-claro: #f5f5f5;
    --branco: #ffffff;
    --borda: #e5e5e5;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    background: var(--branco);
    border-bottom: 1px solid var(--borda);
    position: relative;
    z-index: 10;
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 19px;
    font-weight: 500;
    white-space: nowrap;
}

.brand b {
    font-weight: 800;
}

.brand-mark {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--amarelo);
    color: var(--preto);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 800;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: var(--preto);
}


/* =========================
   BOTÕES
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    background: var(--amarelo);
    color: var(--preto);
    border: 2px solid var(--amarelo);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    text-align: center;
}

.btn:hover {
    background: var(--preto);
    border-color: var(--preto);
    color: var(--amarelo);
    transform: translateY(-2px);
}

.btn-small {
    min-height: 43px;
    padding: 0 18px;
    font-size: 13px;
}

.btn.light {
    background: var(--branco);
    border-color: var(--branco);
    color: var(--preto);
}

.btn.light:hover {
    background: var(--amarelo);
    border-color: var(--amarelo);
}

.btn.outline {
    background: transparent;
    border-color: var(--branco);
    color: var(--branco);
}

.btn.outline:hover {
    background: var(--branco);
    color: var(--preto);
}


/* =========================
   HERO
========================= */

.hero {
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(255, 212, 0, 0.16),
            transparent 28%
        ),
        var(--branco);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 75px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: #555555;
    font-size: 13px;
    font-weight: 700;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--amarelo);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 212, 0, 0.17);
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.04;
    letter-spacing: -3px;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 em {
    font-style: normal;
    position: relative;
    z-index: 1;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    height: 13px;
    left: 0;
    right: 0;
    bottom: 2px;
    background: var(--amarelo);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-copy > p {
    max-width: 620px;
    color: var(--cinza);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 31px;
}

.text-link {
    font-size: 14px;
    font-weight: 700;
    color: #444444;
}

.text-link span {
    margin-left: 6px;
}

.text-link:hover {
    color: var(--preto);
}

.trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.trust p {
    max-width: 300px;
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
}

.avatars {
    display: flex;
    flex-shrink: 0;
}

.avatars span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -7px;
    border: 2px solid var(--branco);
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--preto);
    font-size: 13px;
    font-weight: 900;
}


/* =========================
   IMAGEM DO HERO
========================= */

.hero-image {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--borda);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.13),
        0 5px 20px rgba(0, 0, 0, 0.05);
}

.floating-tag {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 11px 14px;
    background: var(--preto);
    color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    font-size: 10px;
    font-weight: 700;
}


/* =========================
   SEÇÕES
========================= */

.section {
    padding: 105px 0;
    background: #fafafa;
}

.galeria {
    background: var(--branco);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 50px;
}

.label {
    display: inline-block;
    margin-bottom: 13px;
    color: #8b7600;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    max-width: 700px;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading h2 span {
    position: relative;
    z-index: 1;
}

.section-heading h2 span::after {
    content: "";
    position: absolute;
    height: 9px;
    left: 0;
    right: 0;
    bottom: 1px;
    background: var(--amarelo);
    z-index: -1;
}

.section-heading > p {
    color: var(--cinza);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   CARDS
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-width: 0;
    padding: 32px;
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 13px;
    transition: 0.25s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d7bd00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.service-card.featured {
    background: var(--preto);
    color: var(--branco);
    border-color: var(--preto);
}

.service-card > img {
    width: calc(100% + 64px);
    height: 190px;
    margin: -32px -32px 27px;
    object-fit: cover;
    display: block;
}

.service-card .icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    border-radius: 9px;
    background: var(--amarelo);
    color: var(--preto);
    font-size: 20px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 19px;
}

.service-card p {
    min-height: 105px;
    color: #777777;
    font-size: 13px;
    line-height: 1.7;
}

.service-card.featured p {
    color: #c7c7c7;
}

.service-card a {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 800;
}

.service-card a:hover {
    color: #9b8500;
}


/* =========================
   GALERIA
========================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gallery a {
    display: block;
    min-width: 0;
}

.gallery img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    border-radius: 13px;
    border: 1px solid var(--borda);
    transition: 0.25s ease;
}

.gallery a:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================
   PROCESSO
========================= */

.process {
    padding: 105px 0;
    background: var(--preto);
    color: var(--branco);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 100px;
    align-items: center;
}

.process h2 {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.process p {
    max-width: 560px;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.8;
}

.process .btn {
    margin-top: 27px;
}

.steps {
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #333333;
}

.steps li:first-child {
    padding-top: 0;
}

.steps li:last-child {
    border-bottom: 0;
}

.steps > li > b {
    color: var(--amarelo);
    font-size: 13px;
}

.steps h3 {
    margin-bottom: 5px;
    font-size: 17px;
}

.steps p {
    font-size: 13px;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 80px 0;
    background: var(--amarelo);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta .label {
    color: #675800;
}

.cta h2 {
    max-width: 650px;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.cta p {
    max-width: 570px;
    margin-top: 14px;
    color: #4f4500;
    font-size: 14px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

.contact-actions .btn.light:hover {
    background: var(--preto);
    color: var(--branco);
}

.contact-actions .btn.outline {
    border-color: var(--preto);
    color: var(--preto);
}

.contact-actions .btn.outline:hover {
    background: var(--preto);
    color: var(--amarelo);
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 45px 0 25px;
    background: #080808;
    color: var(--branco);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 50px;
    padding-bottom: 35px;
}

.footer-top strong {
    font-size: 12px;
}

.footer-top p {
    margin-top: 7px;
    color: #8d8d8d;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid #242424;
    color: #777777;
    font-size: 11px;
}

.footer-bottom a {
    color: var(--amarelo);
}

.footer-bottom a:hover {
    color: var(--branco);
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .container {
        width: calc(100% - 36px);
    }

    .nav {
        flex-wrap: wrap;
        padding: 17px 0;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        padding: 75px 0 85px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-copy {
        max-width: 800px;
    }

    .hero-image {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 450px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        width: 100%;
        max-width: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


/* =========================
   TABLET PEQUENO
========================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }

    .nav {
        justify-content: center;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    nav {
        gap: 12px 17px;
    }

    nav a {
        font-size: 12px;
    }

    .btn-small {
        display: none;
    }

    .hero {
        padding: 65px 0 75px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-image img {
        height: 400px;
    }

    .section,
    .process {
        padding: 75px 0;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .process-grid {
        gap: 45px;
    }

    .cta {
        padding: 65px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}


/* =========================
   CELULAR
========================= */

@media (max-width: 430px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h1 {
        font-size: 35px;
        letter-spacing: -1.7px;
    }

    .hero h1 em::after {
        height: 8px;
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .text-link {
        text-align: center;
    }

    .trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust p {
        max-width: 100%;
    }

    .hero-image img {
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 11px;
    }

    .floating-tag {
        right: 8px;
        bottom: 8px;
        padding: 8px 10px;
        font-size: 8px;
    }

    .section,
    .process {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .section-heading > p {
        font-size: 13px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card > img {
        width: calc(100% + 48px);
        height: 210px;
        margin: -24px -24px 24px;
    }

    .service-card .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 12px;
    }

    .gallery {
        gap: 14px;
    }

    .gallery img {
        aspect-ratio: 16 / 10;
        border-radius: 10px;
    }

    .process h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .steps li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 22px 0;
    }

    .steps h3 {
        font-size: 15px;
    }

    .steps p {
        font-size: 12px;
    }

    .cta {
        padding: 55px 0;
    }

    .cta h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cta p {
        font-size: 13px;
    }

    .contact-actions {
        width: 100%;
        max-width: none;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .footer {
        padding: 35px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* =========================
   CELULAR MUITO PEQUENO
========================= */

@media (max-width: 350px) {

    .container {
        width: calc(100% - 20px);
    }

    .brand {
        font-size: 17px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    nav {
        gap: 9px 12px;
    }

    nav a {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-image img {
        aspect-ratio: 3 / 4;
    }

    .service-card {
        padding: 20px;
    }

    .service-card > img {
        width: calc(100% + 40px);
        margin: -20px -20px 20px;
        height: 180px;
    }

    .section-heading h2,
    .process h2,
    .cta h2 {
        font-size: 28px;
    }
}


/* =========================
   CELULAR PAISAGEM
========================= */

@media (max-height: 500px) and (orientation: landscape) {

    .hero {
        padding: 45px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-image img {
        height: 300px;
    }

    .section,
    .process {
        padding: 55px 0;
    }
}


/* =========================
   TOUCH
========================= */

@media (hover: none) {

    .btn:hover,
    .service-card:hover,
    .gallery a:hover img {
        transform: none;
    }
}


/* =========================
   ACESSIBILIDADE
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}