@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --bg: #050403;
    --bg-soft: #0e0a07;
    --gold: #c9a25b;
    --gold-soft: #e4c87f;
    --copper: #9a5f36;
    --text: #f4efe8;
    --muted: #c7b8aa;
    --line: rgba(201, 162, 91, .22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    background: radial-gradient(circle at 70% 0%, rgba(154,95,54,.18), transparent 32%), linear-gradient(180deg, #050403 0%, #0c0806 48%, #050403 100%);
    color: var(--text);
    overflow-x: hidden;
}

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

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

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 76px;
    z-index: 20;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,4,3,.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.logo-area img {
    width: 92px;
    max-height: 56px;
    object-fit: contain;
}

.top-whatsapp {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--copper));
    color: #130b05;
    font-weight: 800;
    font-size: 14px;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 112px 24px 42px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.78) 46%, rgba(5,4,3,.35) 100%), linear-gradient(180deg, rgba(5,4,3,.16), rgba(5,4,3,.94)), url("imagens/hero-orla.jpeg");
    background-size: cover;
    background-position: 60% center;
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
    animation: fadeUp 1.1s ease forwards;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--gold-soft);
    background: rgba(5,4,3,.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -.8px;
}

h1 {
    font-size: clamp(42px, 12vw, 64px);
    line-height: .98;
    margin-bottom: 22px;
}

h1 strong {
    display: block;
    color: var(--gold-soft);
}

.hero p,
.clean-section p,
.story-text p,
.specialist-text p,
.form-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.btn-primary {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 16px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--copper));
    color: #120b05;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(154,95,54,.24);
}

.quick-points {
    padding: 18px 24px 8px;
}

.point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.point span {
    color: var(--gold-soft);
    font-weight: 900;
}

.point h2 {
    font-size: 23px;
    margin-bottom: 8px;
}

.point p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
}

.image-story,
.specialist,
.form-section,
.clean-section {
    padding: 50px 24px;
}

.image-story img,
.wide-image img,
.specialist img {
    border-radius: 28px;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: 0 28px 80px rgba(0,0,0,.35);
}

.image-story img {
    object-position: 25% center;
}

.story-text,
.specialist-text {
    padding-top: 28px;
}

.story-text h2,
.clean-section h2,
.specialist-text h2,
.form-card h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    margin-bottom: 18px;
}

.clean-section {
    background: radial-gradient(circle at 90% 10%, rgba(201,162,91,.10), transparent 34%), rgba(255,255,255,.02);
    border-top: 1px solid rgba(201,162,91,.12);
    border-bottom: 1px solid rgba(201,162,91,.12);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.check-list li {
    display: flex;
    gap: 12px;
    color: var(--text);
    line-height: 1.45;
}

.check-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--gold-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.wide-image {
    padding: 20px 24px;
}

.wide-image img {
    aspect-ratio: 1.2 / 1;
    object-position: center;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.credentials span {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--gold-soft);
    background: rgba(201,162,91,.08);
    font-size: 12px;
    font-weight: 800;
}

.form-card {
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 20% 0%, rgba(201,162,91,.13), transparent 36%), rgba(255,255,255,.045);
    box-shadow: 0 28px 80px rgba(0,0,0,.35);
}

form {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

input,
select {
    width: 100%;
    padding: 15px 15px;
    border: 1px solid rgba(201,162,91,.22);
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    color: var(--text);
    font: inherit;
    outline: none;
}

select option {
    background: var(--bg-soft);
}

.footer {
    padding: 34px 24px 42px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
}

.footer img {
    width: 120px;
    margin: 0 auto 18px;
}

.footer p {
    font-size: 13px;
    line-height: 1.55;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 760px) {
    body {
        display: grid;
        place-items: center;
    }

    body::before {
        content: "Modelo mobile clean — reduza a largura do navegador para visualizar melhor.";
        position: fixed;
        top: 18px;
        left: 50%;
        z-index: 100;
        transform: translateX(-50%);
        color: var(--gold-soft);
        font-size: 13px;
        opacity: .72;
    }

    main,
    .topbar,
    .footer {
        width: min(430px, 100%);
    }

    .topbar {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ==========================================================
   MOBILE CLEAN V2 - AJUSTES SOLICITADOS
   ========================================================== */

/* Fundo um pouco mais claro, sem perder o premium */
body {
    background:
        radial-gradient(circle at 70% 0%, rgba(201,162,91,.16), transparent 34%),
        radial-gradient(circle at 20% 28%, rgba(154,95,54,.12), transparent 30%),
        linear-gradient(180deg, #090706 0%, #15100c 46%, #0b0806 100%);
}

/* Hero um pouco menos escura */
.hero-bg {
    background:
        linear-gradient(90deg, rgba(5,4,3,.88) 0%, rgba(5,4,3,.66) 46%, rgba(5,4,3,.28) 100%),
        linear-gradient(180deg, rgba(5,4,3,.08), rgba(5,4,3,.80)),
        url("imagens/hero-orla.jpeg");
    background-size: cover;
    background-position: 60% center;
}

/* Cards logo abaixo do CTA da hero */
.hero-cards {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.hero-cards .point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(201, 162, 91, .24);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
        rgba(16, 11, 8, .76);
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
    opacity: 0;
    transform: translateX(-72px) scale(.96);
    animation: heroCardWhipLeft 1.2s cubic-bezier(.18,.89,.32,1.18) forwards;
}

.hero-cards .point:nth-child(2) {
    transform: translateX(72px) scale(.96);
    animation-name: heroCardWhipRight;
    animation-delay: .14s;
}

.hero-cards .point:nth-child(3) {
    animation-delay: .28s;
}

.hero-cards .point span {
    color: var(--gold-soft);
    font-weight: 900;
}

.hero-cards .point h2 {
    font-size: 21px;
    margin-bottom: 6px;
}

.hero-cards .point p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* Remove espaço antigo da quick-points caso exista */
.quick-points {
    display: none;
}

/* Imagem agora dentro da clean-section */
.clean-section-image {
    margin-top: 30px;
}

.clean-section-image img {
    border-radius: 26px;
    border: 1px solid var(--line);
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 26px 70px rgba(0,0,0,.30);
}

/* A seção onde a imagem entrou precisa aceitar o respiro visual */
.clean-section {
    padding-bottom: 54px;
}

/* A antiga wide-image não precisa mais aparecer */
.wide-image {
    display: none;
}

@keyframes heroCardWhipLeft {
    0% {
        opacity: 0;
        transform: translateX(-72px) scale(.96);
    }

    58% {
        opacity: 1;
        transform: translateX(12px) scale(1.015);
    }

    78% {
        transform: translateX(-5px) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroCardWhipRight {
    0% {
        opacity: 0;
        transform: translateX(72px) scale(.96);
    }

    58% {
        opacity: 1;
        transform: translateX(-12px) scale(1.015);
    }

    78% {
        transform: translateX(5px) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* A hero pode crescer por causa dos cards sem apertar demais o conteúdo */
.hero {
    min-height: auto;
    padding-bottom: 34px;
    align-items: flex-end;
}

@media (max-width: 380px) {
    .hero-cards .point {
        padding: 14px;
    }

    .hero-cards .point h2 {
        font-size: 19px;
    }

    .hero-cards .point p {
        font-size: 13px;
    }
}


/* ==========================================================
   MOBILE CLEAN V3 - TITULO CURSIVO + SECAO MAIS DEFINIDA
   ========================================================== */

/* Título do topo mais compacto e elegante */
.hero-title {
    font-size: clamp(34px, 8.8vw, 50px);
    line-height: 1;
    margin-bottom: 18px;
}

.hero-title span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(27px, 7.4vw, 42px);
    line-height: 1.04;
    font-weight: 600;
    color: #ead7b0;
    margin-bottom: 6px;
    letter-spacing: .2px;
}

.hero-title strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 9.8vw, 56px);
    line-height: .95;
    color: var(--gold-soft);
}

/* Evita conflito com o h1 antigo */
.hero h1.hero-title {
    font-size: clamp(34px, 8.8vw, 50px);
    line-height: 1;
}

/* Seção do prédio: mais escura e com separação visual */
.image-story {
    background:
        radial-gradient(circle at 85% 15%, rgba(154, 95, 54, .08), transparent 34%),
        linear-gradient(180deg, #090605 0%, #060403 100%);
    border-top: 1px solid rgba(201, 162, 91, .14);
    border-bottom: 1px solid rgba(201, 162, 91, .14);
}

/* Linha premium sutil na entrada da seção */
.image-story::before {
    content: "";
    display: block;
    height: 1px;
    margin: -50px 0 50px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 91, .34), transparent);
}

/* Ajuste fino para a hero não ficar alta demais com o novo título */
.hero-content {
    max-width: 490px;
}

.hero p {
    font-size: 15.5px;
    line-height: 1.58;
}

@media (max-width: 380px) {
    .hero-title span {
        font-size: clamp(25px, 7vw, 36px);
    }

    .hero-title strong {
        font-size: clamp(34px, 9.4vw, 50px);
    }
}


/* ==========================================================
   MOBILE WOW TESTE - ANIMACOES MAIS OUSADAS
   Base clean preservada, com efeitos pensados para celular.
   ========================================================== */

.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--copper));
    box-shadow: 0 0 18px rgba(201, 162, 91, .45);
    transition: width .08s linear;
}

.mobile-wow-hero {
    isolation: isolate;
}

.mobile-light-line {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    height: 1px;
    width: 86%;
    left: 7%;
    background: linear-gradient(90deg, transparent, rgba(228, 200, 127, .65), transparent);
    opacity: .65;
    filter: blur(.2px);
}

.line-one {
    top: 102px;
    animation: lightLineMove 5.4s ease-in-out infinite;
}

.line-two {
    bottom: 34px;
    animation: lightLineMoveReverse 6.2s ease-in-out infinite;
}

.mobile-orb {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 200, 127, .18), rgba(154,95,54,.08) 42%, transparent 70%);
    filter: blur(10px);
    opacity: .85;
}

.orb-one {
    width: 190px;
    height: 190px;
    right: -72px;
    top: 130px;
    animation: orbFloatOne 7s ease-in-out infinite;
}

.orb-two {
    width: 150px;
    height: 150px;
    left: -64px;
    bottom: 80px;
    animation: orbFloatTwo 8.2s ease-in-out infinite;
}

.hero-bg {
    animation: mobileHeroBreath 12s ease-in-out infinite alternate;
}

.hero-content {
    animation: heroContentWow 1.35s cubic-bezier(.18,.89,.32,1.16) forwards;
}

.eyebrow {
    animation: eyebrowPop 1.1s cubic-bezier(.18,.89,.32,1.2) .12s both;
}

.hero-title span {
    animation: cursiveSweep 1.25s ease .25s both;
}

.hero-title strong {
    animation: goldTitlePulse 3.8s ease-in-out infinite alternate;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -110%;
    width: 72%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    transform: skewX(-25deg);
    animation: buttonAutoShine 4.5s ease-in-out infinite;
}

.hero-cards .point {
    transform-origin: center;
}

.hero-cards .point:nth-child(1) {
    animation: cardWhipStackLeft 1.25s cubic-bezier(.18,.89,.32,1.18) .32s forwards;
}

.hero-cards .point:nth-child(2) {
    animation: cardWhipStackRight 1.25s cubic-bezier(.18,.89,.32,1.18) .48s forwards;
}

.hero-cards .point:nth-child(3) {
    animation: cardWhipStackLeft 1.25s cubic-bezier(.18,.89,.32,1.18) .64s forwards;
}

.hero-cards .point span {
    animation: numberGlow 3.2s ease-in-out infinite;
}

.image-story img,
.clean-section-image img,
.specialist img {
    animation: imageSlowBreath 10s ease-in-out infinite alternate;
}

.image-story img,
.clean-section-image img,
.specialist img,
.form-card {
    transform-style: preserve-3d;
}

.story-text,
.specialist-text,
.clean-section > .eyebrow,
.clean-section > h2,
.clean-section > p,
.check-list,
.form-card {
    position: relative;
    z-index: 2;
}

.clean-section {
    position: relative;
    overflow: hidden;
}

.clean-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,91,.14), transparent 70%);
    filter: blur(8px);
    animation: sectionOrbPulse 6s ease-in-out infinite;
}

.check-list li {
    opacity: 0;
    transform: translateX(-24px);
}

.wow-show .check-list li:nth-child(1) {
    animation: listItemIn .7s ease .15s forwards;
}

.wow-show .check-list li:nth-child(2) {
    animation: listItemIn .7s ease .28s forwards;
}

.wow-show .check-list li:nth-child(3) {
    animation: listItemIn .7s ease .41s forwards;
}

.credentials span {
    position: relative;
    overflow: hidden;
}

.credentials span::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -110%;
    width: 70%;
    background: linear-gradient(90deg, transparent, rgba(228,200,127,.24), transparent);
    transform: skewX(-25deg);
    animation: badgeShine 5s ease-in-out infinite;
}

.form-card {
    animation: formBreath 5s ease-in-out infinite alternate;
}

label {
    opacity: 0;
    transform: translateY(16px);
}

.wow-show label:nth-child(1) {
    animation: fieldIn .55s ease .08s forwards;
}

.wow-show label:nth-child(2) {
    animation: fieldIn .55s ease .16s forwards;
}

.wow-show label:nth-child(3) {
    animation: fieldIn .55s ease .24s forwards;
}

.wow-show label:nth-child(4) {
    animation: fieldIn .55s ease .32s forwards;
}

.wow-show label:nth-child(5) {
    animation: fieldIn .55s ease .40s forwards;
}

input:focus,
select:focus {
    box-shadow: 0 0 0 4px rgba(201,162,91,.12), 0 0 28px rgba(201,162,91,.18);
    border-color: rgba(228,200,127,.62);
    transform: translateY(-1px);
}

.wow-reveal {
    opacity: 0;
    filter: blur(3px);
    transition: opacity .8s ease, transform .8s ease, filter .8s ease;
}

.wow-left {
    transform: translateX(-54px);
}

.wow-right {
    transform: translateX(54px);
}

.wow-rise {
    transform: translateY(48px);
}

.wow-zoom {
    transform: scale(.94);
}

.wow-reveal.wow-show {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
}

@keyframes lightLineMove {
    0%, 100% {
        transform: translateX(-10px) scaleX(.72);
        opacity: .25;
    }

    50% {
        transform: translateX(18px) scaleX(1);
        opacity: .72;
    }
}

@keyframes lightLineMoveReverse {
    0%, 100% {
        transform: translateX(18px) scaleX(.72);
        opacity: .22;
    }

    50% {
        transform: translateX(-18px) scaleX(1);
        opacity: .6;
    }
}

@keyframes orbFloatOne {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-18px, 22px) scale(1.08);
    }
}

@keyframes orbFloatTwo {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -18px) scale(1.06);
    }
}

@keyframes mobileHeroBreath {
    from {
        transform: scale(1.02);
        filter: brightness(1.03) saturate(1.02);
    }

    to {
        transform: scale(1.075);
        filter: brightness(1.12) saturate(1.08);
    }
}

@keyframes heroContentWow {
    0% {
        opacity: 0;
        transform: translateY(38px) scale(.97);
        filter: blur(5px);
    }

    68% {
        opacity: 1;
        transform: translateY(-8px) scale(1.01);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes eyebrowPop {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cursiveSweep {
    from {
        opacity: 0;
        letter-spacing: 1.4px;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        letter-spacing: .2px;
        transform: translateX(0);
    }
}

@keyframes goldTitlePulse {
    from {
        filter: brightness(1);
        text-shadow: 0 0 0 rgba(228,200,127,0);
    }

    to {
        filter: brightness(1.11);
        text-shadow: 0 0 18px rgba(228,200,127,.16);
    }
}

@keyframes buttonAutoShine {
    0%, 58% {
        left: -110%;
    }

    82%, 100% {
        left: 135%;
    }
}

@keyframes cardWhipStackLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) rotate(-2deg) scale(.95);
    }

    58% {
        opacity: 1;
        transform: translateX(14px) rotate(1deg) scale(1.015);
    }

    78% {
        transform: translateX(-5px) rotate(-.4deg) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
    }
}

@keyframes cardWhipStackRight {
    0% {
        opacity: 0;
        transform: translateX(80px) rotate(2deg) scale(.95);
    }

    58% {
        opacity: 1;
        transform: translateX(-14px) rotate(-1deg) scale(1.015);
    }

    78% {
        transform: translateX(5px) rotate(.4deg) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
    }
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(228,200,127,0);
    }

    50% {
        text-shadow: 0 0 16px rgba(228,200,127,.34);
    }
}

@keyframes imageSlowBreath {
    from {
        transform: scale(1.01);
    }

    to {
        transform: scale(1.045);
    }
}

@keyframes sectionOrbPulse {
    0%, 100% {
        opacity: .45;
        transform: scale(1);
    }

    50% {
        opacity: .85;
        transform: scale(1.12);
    }
}

@keyframes listItemIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgeShine {
    0%, 62% {
        left: -110%;
    }

    86%, 100% {
        left: 135%;
    }
}

@keyframes formBreath {
    from {
        box-shadow: 0 28px 80px rgba(0,0,0,.35), 0 0 0 rgba(201,162,91,0);
    }

    to {
        box-shadow: 0 28px 80px rgba(0,0,0,.35), 0 0 32px rgba(201,162,91,.10);
    }
}

@keyframes fieldIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .wow-reveal,
    label,
    .check-list li {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


/* ==========================================================
   VERSAO FONT + DEBUG MOBILE
   Fontes: Instrument Sans + Instrument Serif
   Debug/correcao: evita largura extra lateral no mobile.
   ========================================================== */

body {
    font-family: 'Instrument Sans', Arial, sans-serif;
}

h1,
h2,
.point h2,
.story-text h2,
.clean-section h2,
.specialist-text h2,
.form-card h2 {
    font-family: 'Instrument Serif', serif;
}

.hero-title span {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(28px, 7.2vw, 42px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: .1px;
}

.hero-title strong {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(38px, 9.6vw, 56px);
    line-height: .93;
    font-weight: 400;
}

.hero p,
.clean-section p,
.story-text p,
.specialist-text p,
.form-card p,
.point p {
    letter-spacing: -.1px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main,
section,
header,
footer,
.hero,
.hero-content,
.hero-cards,
.image-story,
.clean-section,
.specialist,
.form-section {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas {
    max-width: 100%;
}

.hero-cards,
.hero-cards .point {
    width: 100%;
    max-width: 100%;
}

@keyframes cardWhipStackLeft {
    0% {
        opacity: 0;
        transform: translateX(-36px) rotate(-2deg) scale(.95);
    }

    58% {
        opacity: 1;
        transform: translateX(10px) rotate(1deg) scale(1.015);
    }

    78% {
        transform: translateX(-4px) rotate(-.4deg) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
    }
}

@keyframes cardWhipStackRight {
    0% {
        opacity: 0;
        transform: translateX(36px) rotate(2deg) scale(.95);
    }

    58% {
        opacity: 1;
        transform: translateX(-10px) rotate(-1deg) scale(1.015);
    }

    78% {
        transform: translateX(4px) rotate(.4deg) scale(.995);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
    }
}

body.debug-size * {
    outline: 1px solid rgba(255, 0, 0, .35);
}

body.debug-size {
    background:
        linear-gradient(90deg, rgba(255,0,0,.08) 0 1px, transparent 1px),
        linear-gradient(180deg, #090706 0%, #15100c 46%, #0b0806 100%);
    background-size: 20px 100%, auto;
}

@media (max-width: 380px) {
    .hero-title span {
        font-size: clamp(26px, 7vw, 36px);
    }

    .hero-title strong {
        font-size: clamp(35px, 9.2vw, 50px);
    }

    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }
}


/* ==========================================================
   AJUSTES SOLICITADOS PELO CLIENTE - TESTE SEM BACKEND
   ========================================================== */

.whatsapp-point {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hero-cards .point h2 {
    font-size: 20px;
}

.hero-cards .point p {
    font-size: 13.5px;
}

.creci-number {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 900;
    letter-spacing: .7px;
    font-size: 1.12em;
}

.credentials .creci-number,
.footer .creci-number {
    font-size: 1.16em;
}

form label {
    font-size: 16px !important;
    line-height: 1.35;
}

.other-input {
    display: none;
    margin-top: 10px;
}

label.other-active .other-input {
    display: block;
}


/* ==========================================================
   FORMULÁRIO CONDICIONAL - PRONTO / NA PLANTA
   ========================================================== */
.conditional-lead-form {
    margin-top: 34px;
}

.conditional-quiz {
    min-height: 154px;
}

.conditional-question {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

.conditional-question label {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(18px, 1.5vw, 24px) !important;
    line-height: 1.25;
    color: var(--text, #f4eee6);
    font-weight: 900;
}

.conditional-question select,
.conditional-question input {
    width: 100%;
}

.conditional-other-input {
    display: none;
    margin-top: 14px;
}

.conditional-other-input.active {
    display: block;
}

.conditional-controls {
    margin-top: 22px;
}

.conditional-submit {
    display: none;
}

.conditional-final-message {
    margin-top: 18px;
    text-align: center;
}

.conditional-progress-wrap {
    margin-top: 18px;
}

@media (max-width: 680px) {
    .conditional-quiz {
        min-height: 180px;
    }

    .conditional-question label {
        font-size: 18px !important;
    }

    .conditional-controls {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .conditional-controls .quiz-btn {
        width: 100%;
    }
}
