@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bege-fundo: #F4EDE3;
    --bege-claro: #FFFDF8;
    --dourado: #C8912B;
    --dourado-escuro: #9F6D18;
    --marrom-madeira: #6B3F22;
    --preto-elegante: #1C1A17;
    --cinza-quente: #8A8176;
    --branco: #FFFFFF;

    --fonte-titulo: 'Cormorant Garamond', serif;
    --fonte-texto: 'Inter', sans-serif;

    --container: 1320px;
    --radius: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;

    font-family: var(--fonte-texto);
    background: var(--bege-fundo);
    color: var(--preto-elegante);
}

.about-preview,
.categories-section,
.portfolio-section,
.process-section,
.testimonials-section {
    overflow: hidden;
}

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

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

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    background: rgba(244, 237, 227, 0.97);
    border-top: 1px solid rgba(28, 26, 23, 0.08);
    overflow: visible;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header-content {
    width: calc(100% - 40px);
    max-width: var(--container);
    min-height: 138px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(150px, 240px)
        minmax(0, 1fr)
        minmax(190px, 240px);

    align-items: center;
    gap: 32px;
    position: relative;

    transition: min-height 0.3s ease;
}

/* Impede os itens internos de alargarem o grid */

.header-logo,
.header-nav,
.header-actions {
    min-width: 0;
}

/* Linha inferior semelhante ao site antigo */

.header-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(28, 26, 23, 0.78);
}

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

.header-logo {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo img {
    width: 152px;
    max-width: 100%;
    height: auto;
    object-fit: contain;

    transition:
        width 0.3s ease,
        transform 0.3s ease;
}

.header-logo:hover img {
    transform: translateY(-2px);
}

/* ==================================================
   NAVEGAÇÃO
================================================== */

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
    white-space: nowrap;
}

.header-nav a {
    position: relative;
    padding: 12px 0;

    font-family: var(--fonte-texto);
    font-size: 0.94rem;
    font-weight: 400;
    letter-spacing: 0.025em;

    color: var(--dourado-escuro);
    transition: color 0.25s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;

    width: 0;
    height: 1px;
    background: var(--dourado);

    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.header-nav a:hover {
    color: var(--marrom-madeira);
}

.header-nav a:hover::after {
    width: 100%;
}

/* ==================================================
   AÇÕES
================================================== */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.whatsapp-btn {
    min-width: 136px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;

    background: var(--dourado);
    color: var(--preto-elegante);

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

    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.whatsapp-btn:hover {
    background: var(--marrom-madeira);
    color: var(--bege-claro);
    transform: translateY(-2px);
}

/* Carrinho */

.header-cart {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

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

    color: var(--dourado-escuro);
    font-size: 1.05rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.header-cart:hover {
    color: var(--marrom-madeira);
    transform: translateY(-2px);
}

.cart-count {
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;

    position: absolute;
    top: 1px;
    right: 0;

    background: var(--marrom-madeira);
    color: var(--bege-claro);

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

    font-size: 0.58rem;
    font-weight: 700;
}

.cart-count:empty {
    display: none;
}

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    border: 1px solid rgba(107, 63, 34, 0.2);
    border-radius: 50%;
    background: transparent;

    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 20px;

    background: var(--marrom-madeira);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    transition:
        top 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
    top: 15px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

.menu-toggle.active span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ==================================================
   HEADER AO ROLAR
================================================== */

.site-header.scrolled {
    background: rgba(244, 237, 227, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(28, 26, 23, 0.08);
}

.site-header.scrolled .header-content {
    min-height: 92px;
}

.site-header.scrolled .header-logo img {
    width: 112px;
}

.site-header.scrolled .whatsapp-btn {
    min-height: 44px;
}

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

@media (max-width: 1180px) {

    .header-content {
        grid-template-columns:
            minmax(130px, 180px)
            minmax(0, 1fr)
            auto;

        gap: 20px;
    }

    .header-logo img {
        width: 132px;
    }

    .header-nav {
        gap: 20px;
    }

    .header-nav a {
        font-size: 0.87rem;
    }

    .whatsapp-btn {
        min-width: auto;
        padding: 0 20px;
    }

}

@media (max-width: 900px) {

    .header-content {
        width: calc(100% - 28px);
        min-height: 104px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
    }

    .header-logo img {
        width: 128px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-nav {
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        right: 0;

        width: 100%;
        padding: 26px;

        border-radius: 0 0 22px 22px;
        background: rgba(255, 253, 248, 0.98);
        border: 1px solid rgba(200, 145, 43, 0.18);
        box-shadow: 0 24px 45px rgba(28, 26, 23, 0.12);

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        white-space: normal;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .header-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-nav a {
        width: 100%;
        padding: 14px 8px;
        font-size: 0.94rem;
        border-bottom: 1px solid rgba(107, 63, 34, 0.08);
    }

    .header-nav a:last-child {
        border-bottom: 0;
    }

    .header-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}

@media (max-width: 620px) {

    .header-content {
        min-height: 88px;
        gap: 10px;
    }

    .header-logo img {
        width: 105px;
    }

    .whatsapp-btn {
        display: none;
    }

    .header-cart {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .site-header.scrolled .header-content {
        min-height: 78px;
    }

    .site-header.scrolled .header-logo img {
        width: 94px;
    }

}

@media (max-width: 420px) {

    .header-content {
        width: calc(100% - 20px);
    }

    .header-logo img {
        width: 96px;
    }

    .header-actions {
        gap: 5px;
    }

}

/* BOTÕES GERAIS */

.btn-primary,
.btn-outline {
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-primary {
    background: var(--dourado);
    color: var(--preto-elegante);
    border: 1px solid var(--dourado);
}

.btn-primary:hover {
    background: var(--preto-elegante);
    color: var(--bege-claro);
    border-color: var(--preto-elegante);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--dourado);
    color: var(--marrom-madeira);
}

.btn-outline:hover {
    background: var(--dourado);
    color: var(--preto-elegante);
    transform: translateY(-2px);
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dourado-escuro);
}

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

.hero-home {
    padding: 58px 0 88px;
    background: var(--bege-fundo);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
}

/* ==================================================
   TOPO DO HERO
================================================== */

.hero-top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
    align-items: start;
    gap: 52px;
    margin-bottom: 18px;
}

.hero-title {
    position: relative;
    z-index: 2;
}

.hero-title h1 {
    width: 108%;
    max-width: 900px;
    margin: 0;

    font-family: var(--fonte-titulo);
    font-size: clamp(3.8rem, 5.2vw, 5.9rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.hero-intro {
    max-width: 500px;
    margin-top: 42px;
    justify-self: end;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-intro p {
    max-width: 500px;
    margin: 0 auto 30px;

    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.55;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-actions .btn-outline {
    min-width: 150px;
    min-height: 52px;
}

/* BOTÃO REDONDO */

.hero-play {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    border: 1px solid var(--dourado);
    border-radius: 50%;
    background: transparent;

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

    color: var(--preto-elegante);
    font-size: 1rem;

    cursor: pointer;
    transition: var(--transition);
}

.hero-play i {
    margin-left: 2px;
}

.hero-play:hover {
    background: var(--dourado);
    transform: translateY(-2px);
}

/* ==================================================
   GALERIA DO HERO
================================================== */

.hero-gallery {
    min-height: 620px;

    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1fr)
        minmax(0, 0.92fr);

    align-items: start;
    gap: 40px;

    position: relative;
}

.hero-media {
    position: relative;
    overflow: hidden;
    background: #d6cfc4;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

/* VÍDEO: menor e mais abaixo */

.hero-media-video {
    height: 430px;
    margin-top: 110px;
    border-radius: 12px;
}

/* FOTO CENTRAL: mais alta e começando no topo */

.hero-media-center {
    height: 620px;
    margin-top: 0;
    border-radius: 24px;
}

/* FOTO DIREITA: quase tão alta quanto a central */

.hero-media-right {
    height: 560px;
    margin-top: 42px;
    border-radius: 24px;
}

.hero-media:hover img,
.hero-media:hover video {
    transform: scale(1.025);
}

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

@media (max-width: 1180px) {

    .hero-top {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        gap: 38px;
    }

    .hero-title h1 {
        width: 104%;
        font-size: clamp(3.6rem, 6vw, 5.5rem);
    }

    .hero-gallery {
        min-height: 560px;
        gap: 24px;
    }

    .hero-media-video {
        height: 395px;
        margin-top: 95px;
    }

    .hero-media-center {
        height: 560px;
    }

    .hero-media-right {
        height: 505px;
        margin-top: 34px;
    }

}

@media (max-width: 900px) {

    .hero-home {
        padding: 56px 0 72px;
    }

    .hero-top {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 42px;
    }

    .hero-title h1 {
        width: 100%;
        max-width: 760px;
    }

    .hero-intro {
        max-width: 600px;
        margin-top: 0;
        justify-self: start;
        text-align: left;
    }

    .hero-intro p {
        max-width: 600px;
        margin-left: 0;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-gallery {
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .hero-media-video {
        height: 470px;
        margin-top: 65px;
    }

    .hero-media-center {
        height: 545px;
    }

    .hero-media-right {
        grid-column: span 2;
        width: calc(50% - 11px);
        height: 450px;
        margin: 0 0 0 auto;
    }

}

@media (max-width: 680px) {

    .hero-home {
        padding: 44px 0 60px;
    }

    .hero-title h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
        line-height: 0.92;
    }

    .hero-intro p {
        font-size: 0.8rem;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-media-video,
    .hero-media-center,
    .hero-media-right {
        width: 100%;
        height: 500px;
        margin: 0;
        grid-column: auto;
        border-radius: 22px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

}

@media (max-width: 480px) {

    .hero-title h1 {
        font-size: clamp(2.5rem, 13.5vw, 3.8rem);
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .btn-outline {
        flex: 1;
        min-width: 0;
    }

    .hero-media-video,
    .hero-media-center,
    .hero-media-right {
        height: 420px;
    }

}

/* FAIXA DE DIFERENCIAIS */

.features-strip {
    padding: 0 0 96px;
    background: var(--bege-fundo);
}

.features-strip-content {
    padding: 28px 34px;
    border: 1px solid rgba(200, 145, 43, 0.22);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 22px 55px rgba(28, 26, 23, 0.06);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.feature-item {
    min-height: 112px;
    padding: 20px 14px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    transition: var(--transition);
}

.feature-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 145, 43, 0.16);
    color: var(--dourado-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.feature-item span {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--marrom-madeira);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
}

.feature-item:hover {
    background: var(--preto-elegante);
    transform: translateY(-4px);
}

.feature-item:hover i {
    background: var(--dourado);
    color: var(--preto-elegante);
}

.feature-item:hover span {
    color: var(--bege-claro);
}

/* RESPONSIVO */

@media (max-width: 1024px) {
    .features-strip-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-strip {
        padding: 0 0 64px;
    }

    .features-strip-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        border-radius: 22px;
    }

    .feature-item {
        min-height: 104px;
        padding: 18px 10px;
    }
}

@media (max-width: 480px) {
    .features-strip-content {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
        padding: 16px;
    }

    .feature-item i {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }
}

/* ==================================================
   QUEM SOMOS RESUMIDO
================================================== */

.about-preview {
    padding: 118px 0 132px;
    background: var(--bege-fundo);
    border-top: 1px solid rgba(28, 26, 23, 0.08);
    border-bottom: 1px solid rgba(28, 26, 23, 0.10);
    overflow: hidden;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 54px;
}

/* IMAGEM */

.about-preview-image {
    width: 100%;
    height: 450px;
    border-radius: 22px;
    overflow: hidden;
    background: #d6cfc4;
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* TEXTO */

.about-preview-text {
    max-width: 610px;
    justify-self: end;
}

.about-preview-text p {
    margin: 0 0 20px;

    font-family: var(--fonte-texto);
    font-size: 0.89rem;
    font-weight: 500;
    line-height: 1.65;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.about-preview-text p:last-of-type {
    margin-bottom: 34px;
}

.about-preview-signature {
    display: block;

    font-family: var(--fonte-texto);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;

    color: var(--preto-elegante);
}

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

@media (max-width: 1024px) {

    .about-preview {
        padding: 90px 0 100px;
    }

    .about-preview-grid {
        gap: 40px;
    }

    .about-preview-image {
        height: 410px;
    }

    .about-preview-text p {
        font-size: 0.82rem;
    }

}

@media (max-width: 820px) {

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-preview-image {
        height: 480px;
    }

    .about-preview-text {
        max-width: 100%;
        justify-self: start;
    }

}

@media (max-width: 600px) {

    .about-preview {
        padding: 64px 0 72px;
    }

    .about-preview-image {
        height: 360px;
        border-radius: 18px;
    }

    .about-preview-text p {
        font-size: 0.78rem;
        line-height: 1.65;
    }

    .about-preview-signature {
        font-size: 0.82rem;
    }

}

@media (max-width: 420px) {

    .about-preview-image {
        height: 300px;
    }

}

/* ==================================================
   CONHEÇA NOSSA HISTÓRIA
================================================== */

.history-preview {
    padding: 118px 0 130px;
    background: var(--bege-fundo);
    overflow: hidden;
}

.history-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 74px;
}

/* IMAGENS */

.history-preview-images {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.history-image {
    overflow: hidden;
    background: #d6cfc4;
}

.history-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.history-image-left {
    width: 255px;
    height: 390px;
    border-radius: 20px;
}

.history-image-right {
    width: 255px;
    height: 390px;
    margin-top: 44px;
    border-radius: 20px;
}

/* TEXTO */

.history-preview-content {
    max-width: 610px;
}

.history-preview-content .section-label {
    margin-bottom: 22px;
}

.history-preview-content h2 {
    max-width: 610px;
    margin: 0 0 24px;

    font-family: var(--fonte-titulo);
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.history-preview-content p {
    max-width: 600px;
    margin: 0;

    font-size: 0.98rem;
    line-height: 1.75;

    color: var(--preto-elegante);
}

.history-preview-line {
    width: 100%;
    height: 1px;
    margin-top: 46px;
    background: rgba(28, 26, 23, 0.16);
}

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

@media (max-width: 1024px) {

    .history-preview {
        padding: 92px 0 100px;
    }

    .history-preview-grid {
        gap: 48px;
    }

    .history-image-left,
    .history-image-right {
        width: 220px;
        height: 350px;
    }

}

@media (max-width: 820px) {

    .history-preview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .history-preview-images {
        min-height: auto;
        justify-content: flex-start;
    }

    .history-preview-content {
        max-width: 100%;
    }

}

@media (max-width: 600px) {

    .history-preview {
        padding: 66px 0 74px;
    }

    .history-preview-images {
        gap: 12px;
    }

    .history-image-left,
    .history-image-right {
        width: calc(50% - 6px);
        height: 320px;
    }

    .history-image-right {
        margin-top: 30px;
    }

    .history-preview-content h2 {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .history-preview-content p {
        font-size: 0.94rem;
    }

}

@media (max-width: 420px) {

    .history-image-left,
    .history-image-right {
        height: 270px;
        border-radius: 16px;
    }

}

/* ==================================================
   POR QUE ESCOLHER
================================================== */

.why-choose-section {
    padding: 120px 0 130px;
    background: var(--bege-fundo);
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

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

.why-choose-intro {
    width: 520px;
    max-width: none;
}

.why-choose-intro h2 {
    width: 520px;
    max-width: none;
    margin: 0 0 26px;

    font-family: var(--fonte-titulo);
    font-size: clamp(2.45rem, 2.75vw, 3.35rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.why-choose-intro p {
    max-width: 390px;
    margin: 0 0 32px;

    font-size: 0.94rem;
    line-height: 1.75;

    color: var(--preto-elegante);
}

.why-choose-intro .btn-outline {
    min-width: 142px;
    min-height: 52px;
}

/* ==================================================
   ITENS
================================================== */

.why-choose-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 50px;
}

.why-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.why-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;

    background: #ddb96f;
    color: var(--dourado-escuro);

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

    font-size: 1.3rem;
}

.why-item-text h3 {
    margin: 2px 0 4px;

    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.why-item-text p {
    margin: 0;

    font-size: 0.91rem;
    line-height: 1.6;

    color: var(--preto-elegante);
}

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

@media (max-width: 1180px) {

    .why-choose-grid {
        grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.3fr);
        gap: 52px;
    }

    .why-choose-intro h2 {
        font-size: clamp(2.5rem, 3.4vw, 3.6rem);
    }

    .why-choose-items {
        column-gap: 36px;
    }

}

@media (max-width: 1024px) {

    .why-choose-section {
        padding: 94px 0 104px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .why-choose-intro {
        max-width: 720px;
    }

    .why-choose-intro h2 {
        max-width: 680px;
    }

    .why-choose-intro p {
        max-width: 580px;
    }

}

@media (max-width: 720px) {

    .why-choose-section {
        padding: 68px 0 76px;
    }

    .why-choose-intro h2 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .why-choose-items {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .why-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 16px;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

}

@media (max-width: 480px) {

    .why-choose-intro h2 {
        font-size: clamp(2rem, 10.5vw, 3rem);
    }

    .why-item-text h3 {
        font-size: 1.05rem;
    }

}

/* ==================================================
   PORTFÓLIO / O QUE CRIAMOS
================================================== */

.portfolio-section {
    padding: 118px 0 132px;
    background: var(--bege-fundo);
    position: relative;

    /* Não use hidden ou clip em ancestrais do sticky */
    overflow: visible;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    
    /*
    Faz as duas colunas ocuparem a altura da maior,
    criando o espaço necessário para o sticky funcionar.
    */
    align-items: stretch;

    gap: 58px;
}

/* ==================================================
   COLUNA ESQUERDA STICKY
================================================== */

.portfolio-showcase-intro {
    position: relative;
    min-width: 0;
    height: 100%;
}

.portfolio-sticky {
    position: sticky;
    top: 110px;

    width: 100%;
    align-self: start;
}

.portfolio-sticky > h2 {
    margin: 0 0 18px;

    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 2.5vw, 2.9rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.portfolio-sticky > p {
    max-width: 520px;
    margin: 0 0 30px;

    font-size: 0.94rem;
    line-height: 1.7;

    color: var(--preto-elegante);
}

.portfolio-sticky > .btn-outline {
    margin-bottom: 58px;
    min-width: 260px;
}

/* ==================================================
   COLUNA DIREITA
================================================== */

.portfolio-showcase-projects {
    display: flex;
    flex-direction: column;
    gap: 62px;
    min-width: 0;
}

/* ==================================================
   CARDS
================================================== */

.portfolio-feature-card {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.portfolio-feature-image {
    width: 100%;
    height: 610px;
    overflow: hidden;
    background: #d7d0c6;
}

.portfolio-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.75s ease;
}

.portfolio-feature-card:hover .portfolio-feature-image img {
    transform: scale(1.025);
}

/* CARD DOURADO DA ESQUERDA */

.portfolio-feature-gold {
    background: var(--dourado);
}

.portfolio-feature-gold .portfolio-feature-image {
    height: 660px;
}

.portfolio-feature-gold .portfolio-feature-caption {
    padding: 24px 28px 26px;
    text-align: center;
    background: var(--dourado);
}

/* CARDS CLAROS DA DIREITA */

.portfolio-feature-light {
    background: #eeeeec;
}

.portfolio-feature-light .portfolio-feature-caption {
    padding: 26px 30px 28px;
    text-align: center;
    background: #eeeeec;
}

/* TEXTOS DOS CARDS */

.portfolio-feature-caption h3 {
    max-width: 520px;
    margin: 0 auto 10px;

    font-family: var(--fonte-titulo);
    font-size: clamp(1.55rem, 1.75vw, 2.15rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.portfolio-feature-caption p {
    max-width: 610px;
    margin: 0 auto;

    font-size: 0.92rem;
    line-height: 1.65;

    color: var(--preto-elegante);
}

.portfolio-feature-caption p + p {
    margin-top: 4px;
}

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

@media (max-width: 1100px) {

    .portfolio-showcase {
        gap: 34px;
    }

    .portfolio-feature-image {
        height: 520px;
    }

    .portfolio-feature-gold .portfolio-feature-image {
        height: 570px;
    }

    .portfolio-sticky {
        top: 104px;
    }

}

@media (max-width: 900px) {

    .portfolio-section {
        padding: 86px 0 96px;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    /*
    No tablet e celular desativamos o sticky,
    evitando uma coluna presa desnecessariamente.
    */

    .portfolio-sticky {
        position: static;
    }

    .portfolio-sticky > .btn-outline {
        margin-bottom: 42px;
    }

    .portfolio-showcase-projects {
        gap: 38px;
    }

    .portfolio-feature-image,
    .portfolio-feature-gold .portfolio-feature-image {
        height: 560px;
    }

}

@media (max-width: 600px) {

    .portfolio-section {
        padding: 66px 0 74px;
    }

    .portfolio-feature-card {
        border-radius: 20px;
    }

    .portfolio-feature-image,
    .portfolio-feature-gold .portfolio-feature-image {
        height: 440px;
    }

    .portfolio-feature-light .portfolio-feature-caption,
    .portfolio-feature-gold .portfolio-feature-caption {
        padding: 22px 20px 24px;
    }

    .portfolio-feature-caption h3 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .portfolio-feature-caption p {
        font-size: 0.87rem;
    }

}

@media (max-width: 420px) {

    .portfolio-feature-image,
    .portfolio-feature-gold .portfolio-feature-image {
        height: 370px;
    }

}

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

.testimonials-section {
    padding: 82px 0 96px;
    background: var(--bege-fundo);
}

.testimonials-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 430px 700px;
    align-items: center;

    justify-content: center;
    gap: 54px;

    margin: 0 auto;
}

/* ==================================================
   TEXTO DA ESQUERDA
================================================== */

.testimonials-intro {
    width: 430px;
    max-width: 430px;
}

.testimonials-intro .section-label {
    display: block;
    width: 300px;
    max-width: 300px;
    margin: 0 0 22px;

    font-size: 0.73rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.035em;
    text-transform: uppercase;

    color: var(--dourado-escuro);
}

.testimonials-intro h2 {
    width: 430px;
    max-width: 430px;
    margin: 0 0 24px;

    font-family: var(--fonte-titulo);
    font-size: clamp(2.25rem, 2.45vw, 2.85rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.testimonials-intro p {
    width: 340px;
    max-width: 340px;
}

/* ==================================================
   CARDS
================================================== */

.testimonials-cards {
    width: 700px;
    max-width: 700px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    justify-self: auto;
}

.testimonial-card {
    min-height: 240px;
    padding: 42px 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #ffffff;
    border: 1px solid rgba(28, 26, 23, 0.08);
    border-radius: 8px;

    box-shadow:
        0 2px 5px rgba(28, 26, 23, 0.07),
        0 8px 18px rgba(28, 26, 23, 0.06);
}

.testimonial-author {
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;

    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.testimonial-author span {
    display: block;

    font-size: 0.86rem;
    line-height: 1.4;

    color: var(--preto-elegante);
}

.testimonial-card > p {
    width: 100%;
    max-width: 290px;
    margin: 0;

    font-size: 0.89rem;
    line-height: 1.65;

    color: var(--preto-elegante);
}

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

@media (max-width: 1100px) {

    .testimonials-grid {
        grid-template-columns: 340px minmax(0, 1fr);
        justify-content: initial;
        gap: 36px;
    }

    .testimonials-intro,
    .testimonials-intro h2 {
        width: 340px;
        max-width: 340px;
    }

    .testimonials-intro p {
        width: 320px;
        max-width: 320px;
    }

    .testimonials-cards {
        width: 100%;
        max-width: 700px;
        justify-self: stretch;
    }

    .testimonial-card {
        padding: 36px 26px;
    }
}

@media (min-width: 1101px) {

    .testimonials-section .testimonials-grid {
        width: fit-content;
        max-width: 100%;

        grid-template-columns: 430px 700px !important;

        justify-content: center !important;
        gap: 54px !important;

        margin: 0 auto;
    }

    .testimonials-section .testimonials-intro,
    .testimonials-section .testimonials-intro h2 {
        width: 430px !important;
        max-width: 430px !important;
    }

    .testimonials-section .testimonials-cards {
        width: 700px !important;
        max-width: 700px !important;

        justify-self: auto !important;
    }
}

@media (max-width: 820px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .testimonials-intro,
    .testimonials-intro h2 {
        width: 100%;
        max-width: 520px;
    }

    .testimonials-intro .section-label,
    .testimonials-intro p {
        width: 100%;
        max-width: 480px;
    }

    .testimonials-cards {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

}

@media (max-width: 680px) {

    .testimonials-section {
        padding: 62px 0 70px;
    }

    .testimonials-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: auto;
        padding: 30px 24px;
    }

}

@media (max-width: 480px) {

    .testimonials-intro h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

}

/* ==================================================
   CHAMADA PARA ORÇAMENTO
================================================== */

.quote-section {
    width: 100%;
    padding: 0;
    background: var(--bege-fundo);
}

/* Imagem ocupando toda a largura, como no site antigo */

.quote-box {
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 16, 0.48) 0%,
            rgba(20, 18, 16, 0.22) 48%,
            rgba(20, 18, 16, 0.10) 100%
        ),
        url('../img/cta-orcamento.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* Mantém o conteúdo alinhado com o restante do site */

.quote-container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;

    display: flex;
    align-items: center;
}

/* Card semelhante ao antigo */

.quote-content {
    width: 550px;
    max-width: 100%;

    padding: 42px 44px 44px;

    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);
}

.quote-content h2 {
    max-width: 430px;
    margin: 0 0 22px;

    font-family: var(--fonte-titulo);
    font-size: clamp(2.45rem, 3.25vw, 3.55rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    color: var(--preto-elegante);
}

.quote-content p {
    max-width: 390px;
    margin: 0 0 30px;

    font-size: 0.93rem;
    line-height: 1.7;

    color: var(--preto-elegante);
}

.quote-content .btn-outline {
    min-width: 235px;
    min-height: 52px;
}

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

@media (max-width: 900px) {

    .quote-box {
        min-height: 500px;
        background-position: 60% center;
    }

    .quote-content {
        width: 500px;
        padding: 38px;
    }

}

@media (max-width: 680px) {

    .quote-box {
        min-height: 540px;
        align-items: flex-end;

        padding: 28px 0;

        background-position: 64% center;
    }

    .quote-container {
        width: min(100% - 28px, var(--container));
    }

    .quote-content {
        width: 100%;
        padding: 30px 24px;

        border-radius: 20px;

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

    .quote-content h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .quote-content .btn-outline {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .quote-box {
        min-height: 500px;
    }

    .quote-content h2 br {
        display: none;
    }

}

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

.site-footer {
    background: #292929;
    color: rgba(255, 255, 255, 0.88);
}

.footer-main {
    padding: 100px 0 96px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.65fr 1fr;
    gap: 110px;
    align-items: start;
}

/* MARCA */

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

.footer-logo {
    width: 180px;
    display: block;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 390px;
    font-size: 0.98rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

/* COLUNAS */

.footer-column h3 {
    margin-bottom: 44px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.footer-column a,
.footer-column span {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--dourado);
}

/* CONTATO */

.footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
}

.footer-contact i {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #ffffff;
}

/* RODAPÉ INFERIOR */

.footer-bottom {
    background: #111111;
}

.footer-bottom-content {
    min-height: 62px;
    display: flex;
    align-items: center;
}

.footer-bottom a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--dourado);
}

/* RESPONSIVO */

@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: 1fr 0.7fr;
        gap: 60px;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-contact ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 36px;
    }

}

@media (max-width: 768px) {

    .footer-main {
        padding: 70px 0 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

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

    .footer-contact ul {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        margin-bottom: 26px;
    }

    .footer-column ul {
        gap: 18px;
    }

}

@media (max-width: 480px) {

    .footer-main {
        padding: 56px 0 48px;
    }

    .footer-logo {
        width: 132px;
    }

    .footer-bottom-content {
        min-height: auto;
        padding: 20px 0;
    }

}