/* =========================================================
   RESET + VARIÁVEIS
========================================================= */

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

:root {
    --terracotta: #c45f3e;
    --terracotta-dark: #a64c31;
    --terracotta-light: #e09a7f;
    --beige: #eee0cf;
    --beige-light: #f7eee5;
    --cream: #faf7f2;
    --brown: #2c211c;
    --brown-soft: #5f5049;
    --white: #ffffff;
    --border: rgba(44, 33, 28, 0.13);
    --container: 1180px;
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 36px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

::selection {
    background: rgba(196, 95, 62, 0.2);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--brown);
    color: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: var(--brown);
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--terracotta);
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.eyebrow-light {
    color: var(--terracotta-light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.portfolio-heading h2,
.business-copy h2,
.faq-heading h2,
.site-showcase-copy h2,
.purpose-copy h2,
.pricing-copy h2,
.scope-copy h2,
.about-copy h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.section-heading h2 span,
.portfolio-heading h2 span,
.business-copy h2 span,
.faq-heading h2 span,
.site-showcase-copy h2 span,
.purpose-copy h2 span,
.pricing-copy h2 span,
.scope-copy h2 span {
    color: var(--terracotta);
}

.section-heading p,
.portfolio-heading p,
.business-copy p,
.faq-heading p,
.site-showcase-copy p,
.pricing-copy > p,
.scope-copy p,
.about-copy p {
    margin-top: 24px;
    color: var(--brown-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(196, 95, 62, 0.35);
    outline-offset: 4px;
}

.btn-primary {
    color: var(--white);
    background: var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-header {
    min-height: 46px;
    padding: 0 21px;
    background: var(--brown);
    color: var(--white);
    font-size: 0.9rem;
}

.btn-header:hover {
    background: var(--terracotta);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: var(--terracotta-light);
    font-weight: 600;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

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

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(44, 33, 28, 0.08);
}

.header-container {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    width: 82px;
    height: 62px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.nav a {
    position: relative;
    color: var(--brown-soft);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.25s ease;
}

.nav a:hover {
    color: var(--brown);
}

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

.menu-button {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 50%;
    background: var(--brown);
}

.menu-button span {
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: 0.3s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.menu-button.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 95px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 35%, rgba(196, 95, 62, 0.13), transparent 32%),
        linear-gradient(180deg, #f4e8dc 0%, #faf7f2 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196, 95, 62, 0.12);
    top: 80px;
    right: -180px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
    align-items: center;
    gap: 75px;
}

.hero-content h1 {
    max-width: 700px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.7rem, 6.2vw, 6.9rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 500;
}

.hero-content h1 span {
    display: block;
    color: var(--terracotta);
}

.hero-text {
    max-width: 610px;
    margin-top: 30px;
    color: var(--brown-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.75;
}

.hero-offer {
    width: fit-content;
    margin-top: 27px;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    border: 1px solid rgba(196, 95, 62, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    color: var(--brown-soft);
    font-size: 0.8rem;
}

.hero-sale {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-old-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.hero-offer strong {
    color: var(--terracotta);
    font-size: 1rem;
}

.hero-offer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(44, 33, 28, 0.35);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    color: var(--brown-soft);
    font-size: 0.87rem;
}

.hero-features > div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.check {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 95, 62, 0.12);
    color: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 700;
}

.micro-note {
    margin-top: 14px;
    color: rgba(44, 33, 28, 0.55);
    font-size: 0.75rem;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.browser-card {
    position: absolute;
    width: 100%;
    max-width: 610px;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(1.5deg);
    border: 1px solid rgba(44, 33, 28, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 35px 90px rgba(67, 42, 30, 0.14);
}

.browser-top {
    height: 48px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 17px;
    background: #f7f4f0;
    border-bottom: 1px solid rgba(44, 33, 28, 0.08);
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c8c0b9;
}

.browser-address,
.case-url {
    justify-self: center;
    width: 74%;
    padding: 4px 14px;
    border-radius: 20px;
    background: #ece8e3;
    color: #8c837d;
    text-align: center;
    font-size: 0.65rem;
}

.browser-content {
    padding: 26px;
    background: #f8eee6;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.83rem;
}

.mock-nav {
    display: flex;
    gap: 7px;
}

.mock-nav span {
    width: 26px;
    height: 4px;
    border-radius: 10px;
    background: rgba(44, 33, 28, 0.15);
}

.mock-hero {
    min-height: 270px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 22px;
}

.mock-small {
    width: 70px;
    height: 6px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: rgba(196, 95, 62, 0.45);
}

.mock-title {
    width: 90%;
    height: 23px;
    margin-bottom: 9px;
    border-radius: 3px;
    background: var(--brown);
}

.mock-title.short {
    width: 68%;
}

.mock-paragraph {
    width: 85%;
    height: 6px;
    margin-top: 23px;
    border-radius: 4px;
    background: rgba(44, 33, 28, 0.22);
}

.mock-paragraph.small {
    width: 60%;
    margin-top: 7px;
}

.mock-button {
    width: 90px;
    height: 29px;
    margin-top: 23px;
    border-radius: 20px;
    background: var(--terracotta);
}

.mock-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 120px 120px 30px 30px;
    background: linear-gradient(135deg, #d98668, #a84d32);
}

.mock-image-shape {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.3rem;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-cards div {
    height: 75px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 33, 28, 0.07);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid rgba(44, 33, 28, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 35px rgba(44, 33, 28, 0.1);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card-one {
    left: -38px;
    top: 115px;
}

.floating-card-two {
    right: -15px;
    bottom: 55px;
    animation-delay: 1.3s;
}

.floating-icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--beige);
    color: var(--terracotta);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 0.75rem;
}

.floating-card small {
    color: #82766f;
    font-size: 0.62rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =========================================================
   PROBLEMA
========================================================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.problem-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.38);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 95, 62, 0.36);
    box-shadow: 0 20px 45px rgba(44, 33, 28, 0.06);
}

.problem-card .number,
.why-card > span {
    color: var(--terracotta);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.problem-card h3,
.why-card h3 {
    margin-top: auto;
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.problem-card p,
.why-card p {
    margin-top: 12px;
    color: var(--brown-soft);
    font-size: 0.92rem;
}

/* =========================================================
   O QUE FAZEMOS
========================================================= */

.site-showcase {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.site-showcase-copy {
    position: sticky;
    top: 135px;
}

.site-showcase-copy h2 span {
    display: block;
    color: var(--terracotta-light);
}

.site-showcase-copy p {
    color: rgba(255, 255, 255, 0.65);
}

.site-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 270px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 95, 62, 0.16);
    color: var(--terracotta-light);
}

.feature-card h3 {
    margin-top: auto;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 1.32rem;
}

.feature-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

/* =========================================================
   PROPOSTA + INCLUÍDOS
========================================================= */

.purpose-section {
    background: #fff;
}

.purpose-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.purpose-copy h2 span {
    display: block;
}

.purpose-text {
    max-width: 620px;
}

.purpose-text p {
    margin-bottom: 20px;
    color: var(--brown-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.purpose-link {
    color: var(--terracotta);
}

.included-section {
    background: var(--beige-light);
}

.included-grid {
    border-top: 1px solid var(--border);
}

.included-item {
    min-height: 75px;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid var(--border);
    color: var(--brown);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.included-item:hover {
    padding-left: 25px;
    color: var(--terracotta);
}

.included-item span {
    color: var(--terracotta);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

/* =========================================================
   POR QUE A LUME
========================================================= */

.why-section {
    background: var(--cream);
}

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

.why-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 95, 62, 0.34);
}

.why-card h3 {
    font-size: 1.2rem;
}

.why-card p {
    font-size: 0.86rem;
}

/* =========================================================
   PROCESSO
========================================================= */

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-card {
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--cream);
}

.process-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
}

.process-card h3 {
    margin-top: auto;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.25;
}

.process-card p {
    margin-top: 13px;
    color: var(--brown-soft);
    font-size: 0.88rem;
}

/* =========================================================
   PORTFÓLIO — QUENTE E FRIO REAL
========================================================= */

.portfolio-section {
    background: var(--cream);
}

.portfolio-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.portfolio-heading p {
    margin-top: 0;
}

.case-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(44, 33, 28, 0.07);
}

.case-preview {
    padding: 34px;
    background: linear-gradient(135deg, #16303b 0%, #244e5c 56%, #d7eef2 100%);
}

.case-browser-top {
    height: 47px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 16px;
    border-radius: 18px 18px 0 0;
    background: #f6f5f2;
}

.case-screenshot {
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(8, 34, 44, 0.18);
}

.case-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    object-position: top center;
    transition: transform 0.45s ease;
}

.case-card:hover .case-screenshot img {
    transform: scale(1.012);
}

.case-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.case-label {
    color: var(--terracotta);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.case-info h3 {
    margin-top: 12px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.case-category {
    margin-top: 8px !important;
    color: var(--terracotta) !important;
    font-weight: 600;
}

.case-info p {
    margin-top: 18px;
    color: var(--brown-soft);
    font-size: 0.96rem;
    line-height: 1.75;
}

.case-info .btn {
    width: fit-content;
    margin-top: 28px;
}

/* =========================================================
   PREÇO
========================================================= */

.pricing-section {
    background: var(--beige-light);
}

.pricing-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.pricing-highlight {
    margin-top: 35px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.pricing-highlight + .pricing-highlight {
    margin-top: 24px;
}

.pricing-highlight span,
.pricing-highlight strong {
    display: block;
}

.pricing-highlight span {
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-highlight strong {
    max-width: 520px;
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.price-card {
    position: relative;
    overflow: hidden;
    padding: 45px;
    border: 1px solid rgba(196, 95, 62, 0.22);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 30px 75px rgba(75, 45, 30, 0.09);
}

.sale-banner {
    position: absolute;
    top: 26px;
    right: -37px;
    width: 150px;
    padding: 7px 0;
    transform: rotate(38deg);
    background: var(--terracotta);
    color: #fff;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.price-badge {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--beige-light);
    color: var(--terracotta);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.old-price {
    margin-top: 24px;
    color: #887a72;
    text-decoration: line-through;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-top: 4px;
    color: var(--brown);
    line-height: 1;
}

.price small {
    margin-top: 17px;
    margin-right: 6px;
    font-size: 1.25rem;
}

.price strong {
    font-family: "Manrope", sans-serif;
    font-size: clamp(4.7rem, 8vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.07em;
}

.price > span {
    margin-top: 13px;
    font-size: 1.45rem;
}

.price-card-top > p {
    margin-top: 4px;
    color: var(--brown-soft);
}

.price-features {
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.price-features > div {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--brown-soft);
    font-size: 0.9rem;
}

.price-features > div > span {
    color: var(--terracotta);
    font-weight: 700;
}

.btn-price {
    width: 100%;
    margin-top: 30px;
    background: var(--terracotta);
    color: #fff;
}

.btn-price:hover {
    background: var(--terracotta-dark);
}

.price-note {
    margin-top: 18px;
    color: #877a73;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.55;
}

/* =========================================================
   ESCOPO
========================================================= */

.scope-section {
    background: #fff;
}

.scope-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 90px;
    row-gap: 35px;
    align-items: start;
}

.scope-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.scope-list span {
    padding: 15px 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--cream);
    color: var(--brown-soft);
    font-size: 0.88rem;
}

.scope-cta {
    grid-column: 2;
    padding-top: 8px;
}

.scope-cta p {
    color: var(--brown-soft);
}

.scope-cta .text-link {
    margin-top: 8px;
}

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

.about-section {
    background: var(--brown);
    color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 90px;
    align-items: center;
}

.about-mark {
    width: min(100%, 330px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(224, 154, 127, 0.28);
    border-radius: 50%;
    color: var(--terracotta-light);
    font-family: "Manrope", sans-serif;
    font-size: clamp(5rem, 9vw, 8rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding-left: 0.08em;
}

.about-copy h2 {
    color: #fff;
}

.about-copy p {
    color: rgba(255, 255, 255, 0.66);
}

/* =========================================================
   PARA QUEM É
========================================================= */

.business-section {
    background: var(--cream);
}

.business-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.business-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.business-list span {
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--brown-soft);
    font-size: 0.9rem;
}

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

.faq-section {
    background: #fff;
}

.faq-container {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 130px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: var(--brown);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-question b {
    color: var(--terracotta);
    font-size: 1.7rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question b {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    max-width: 700px;
    padding: 0 45px 27px 0;
    color: var(--brown-soft);
    line-height: 1.75;
}

/* =========================================================
   CONTATO
========================================================= */

.contact-section {
    padding: 110px 0;
    background: var(--beige-light);
}

.contact-box {
    position: relative;
    overflow: hidden;
    padding: 85px 70px;
    border-radius: var(--radius-large);
    background: var(--brown);
    color: #fff;
    text-align: center;
}

.contact-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(224, 154, 127, 0.2);
    border-radius: 50%;
}

.contact-symbol {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(196, 95, 62, 0.18);
    color: var(--terracotta-light);
    font-size: 1.6rem;
}

.contact-box .eyebrow {
    justify-content: center;
}

.contact-box h2 {
    max-width: 850px;
    margin-inline: auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.contact-box h2 span {
    color: var(--terracotta-light);
}

.contact-box > p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
}

.contact-actions {
    margin-top: 35px;
}

.btn-contact {
    background: var(--terracotta);
    color: #fff;
}

.btn-contact:hover {
    background: var(--terracotta-dark);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 48px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail span,
.contact-detail strong {
    display: block;
}

.contact-detail-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.contact-detail strong {
    margin-top: 5px;
    font-size: 0.95rem;
}

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

.footer {
    padding: 70px 0 32px;
    background: #231a16;
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    width: 95px;
    height: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    max-width: 260px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 35px;
    align-content: start;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

.footer-contact {
    display: flex;
    gap: 22px;
}

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

.whatsapp-floating {
    position: fixed;
    z-index: 1100;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 14px 35px rgba(20, 90, 48, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(20, 90, 48, 0.36);
}

.whatsapp-floating svg {
    width: 30px;
    fill: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    padding: 8px 11px;
    border-radius: 9px;
    background: var(--brown);
    color: #fff;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   PÁGINAS LEGAIS
========================================================= */

.legal-page {
    min-height: 100vh;
    padding: 195px 0 90px;
    background: var(--cream);
}

.legal-shell {
    max-width: 900px;
}

.legal-head {
    margin-bottom: 52px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.legal-head h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.legal-head p {
    margin-top: 18px;
    color: var(--brown-soft);
}

.legal-content {
    display: grid;
    gap: 38px;
}

.legal-section h2 {
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 600;
}

.legal-section p,
.legal-section li {
    margin-top: 11px;
    color: var(--brown-soft);
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    padding-left: 22px;
}

.legal-note {
    padding: 20px;
    border: 1px solid rgba(196, 95, 62, 0.2);
    border-radius: 16px;
    background: rgba(196, 95, 62, 0.06);
}

.legal-back {
    margin-top: 50px;
}

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

@media (max-width: 1100px) {
    .nav {
        gap: 18px;
    }

    .nav a {
        font-size: 0.84rem;
    }

    .hero-container {
        grid-template-columns: 1fr 0.9fr;
        gap: 45px;
    }

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

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-screenshot {
        height: 540px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 85px 0;
    }

    .header-container {
        height: 78px;
    }

    .header .btn-header {
        display: none;
    }

    .menu-button {
        display: flex;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        inset: 78px 18px auto 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(250, 247, 242, 0.98);
        box-shadow: 0 20px 60px rgba(44, 33, 28, 0.13);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }

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

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

    .hero {
        min-height: auto;
        padding: 125px 0 80px;
    }

    .hero-container,
    .site-showcase,
    .purpose-container,
    .pricing-container,
    .business-container,
    .faq-container,
    .scope-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .browser-card {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) rotate(1deg);
    }

    .site-showcase-copy,
    .faq-heading {
        position: static;
    }

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

    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-heading p {
        max-width: 680px;
    }

    .scope-cta {
        grid-column: auto;
    }

    .about-mark {
        width: 220px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .portfolio-heading h2,
    .business-copy h2,
    .faq-heading h2,
    .site-showcase-copy h2,
    .purpose-copy h2,
    .pricing-copy h2,
    .scope-copy h2,
    .about-copy h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .hero {
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-offer {
        border-radius: 18px;
    }

    .hero-features {
        display: grid;
        gap: 10px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .browser-card {
        max-width: 100%;
    }

    .browser-top {
        grid-template-columns: 60px 1fr 60px;
    }

    .browser-content {
        padding: 18px;
    }

    .mock-hero {
        min-height: 220px;
        grid-template-columns: 1fr 0.8fr;
    }

    .mock-image {
        height: 145px;
    }

    .mock-image-shape {
        width: 65px;
        height: 65px;
    }

    .floating-card {
        display: none;
    }

    .problem-grid,
    .site-features-grid,
    .process-grid,
    .why-grid,
    .scope-list {
        grid-template-columns: 1fr;
    }

    .problem-card,
    .process-card,
    .why-card {
        min-height: 230px;
    }

    .included-item {
        grid-template-columns: 48px 1fr;
        padding-inline: 5px;
    }

    .case-preview {
        padding: 18px;
    }

    .case-browser-top {
        grid-template-columns: 70px 1fr 70px;
    }

    .case-screenshot {
        height: 360px;
    }

    .case-info {
        padding: 30px 23px;
    }

    .case-info .btn {
        width: 100%;
    }

    .price-card {
        padding: 35px 22px;
    }

    .about-mark {
        width: 180px;
    }

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

    .contact-box {
        padding: 60px 22px;
        border-radius: 26px;
    }

    .contact-details {
        flex-direction: column;
        gap: 18px;
    }

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

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

    .footer-bottom {
        grid-column: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contact {
        flex-direction: column;
        gap: 6px;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .legal-page {
        padding: 145px 0 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}