:root {
    --primary: #0a3d91;
    --primary-2: #123f95;
    --primary-dark: #061634;
    --primary-deep: #030816;
    --accent: #f2c313;
    --accent-2: #ffd84d;
    --accent-dark: #d2a500;
    --white: #ffffff;
    --black: #050505;
    --text: #081225;
    --text-light: #ffffff;
    --muted: #5c6575;
    --muted-light: #d8e2f7;
    --line: rgba(255, 255, 255, 0.14);
    --line-dark: rgba(5, 10, 20, 0.12);
    --bg-white: #ffffff;
    --bg-soft: #f2f5fa;
    --bg-blue: #07142f;
    --card-blue: #0e214a;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    --container: 1180px;
    --radius: 26px;
    --font-title: "Archivo", "Inter", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-deep);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 42px), var(--container));
    margin: 0 auto;
}

.lp-header {
    background: #fff;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e8e8e8;
}

.lp-header-logo img {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    z-index: 10;
    opacity: 0.95;
}

.lp-hero {
    position: relative;
    min-height: 780px;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 195, 19, 0.18), transparent 28%),
        linear-gradient(135deg, #07142f 0%, #0a3d91 48%, #061634 100%);
    overflow: hidden;
    isolation: isolate;
}

.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 22, 52, 0.95) 0%, rgba(10, 61, 145, 0.82) 48%, rgba(6, 22, 52, 0.95) 100%),
        url("../assets/obra-02.jpg") center/cover no-repeat;
    opacity: 0.88;
    z-index: -2;
}

.lp-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -220px;
    bottom: -220px;
    background: rgba(242, 195, 19, 0.9);
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.2;
    z-index: -1;
}

.lp-hero-grid {
    min-height: 780px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 380px;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.lp-hero-content {
    color: #fff;
}

.lp-kicker,
.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 18px;
}

.lp-kicker {
    color: var(--accent);
}

.lp-kicker::before,
.lp-section-label::before {
    content: "";
    width: 34px;
    height: 4px;
    background: currentColor;
    border-radius: 999px;
}

.lp-section-label.light {
    color: var(--accent);
}

.lp-hero h1,
.lp-section-title h2,
.lp-text-block h2,
.lp-cta-strip h2 {
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.lp-hero h1 {
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    line-height: 1.05;
    max-width: 640px;
}

.lp-hero p {
    font-size: 1rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 34px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.lp-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: 0.25s ease;
    border: 2px solid transparent;
}

.lp-btn:hover {
    transform: translateY(-3px);
}

.lp-btn-primary {
    background: var(--accent);
    color: #061634;
    box-shadow: 0 18px 40px rgba(242, 195, 19, 0.28);
}

.lp-btn-dark,
.lp-btn-black {
    background: #050505;
    color: #fff;
    border-color: #050505;
}

.lp-btn-dark {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.lp-btn-dark:hover {
    background: #fff;
    color: var(--primary-dark);
}

.lp-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-seals span {
    display: inline-flex;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 800;
    font-size: 0.84rem;
    backdrop-filter: blur(10px);
}

.lp-hero-form {
    background: #fff;
    color: #050505;
    padding: 40px;
    transform: translateY(20px);
    min-height: 520px;
    box-shadow: var(--shadow);
    border-top: 14px solid var(--accent);
}

.lp-form-head {
    background: #050505;
    color: #fff;
    padding: 22px 24px;
    margin: -34px -34px 28px;
}

.lp-form-head h2 {
    font-family: var(--font-title);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.1;
}

.lp-form-head p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin-top: 8px;
}

.lp-hero-form .form-group {
    margin-bottom: 12px;
}

.lp-hero-form input {
    height: 54px;
    font-size: 0.95rem;
    width: 100%;
    padding: 0 14px;
    border: 1px solid #d6d6d6;
    background: #f7f7f7;
    color: #111;
    outline: none;
}

.lp-hero-form input:focus {
    border-color: var(--primary);
    background: #fff;
}

.lp-submit {
    width: 100%;
    height: 54px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition: 0.25s ease;
}

.lp-submit:hover {
    background: var(--primary-dark);
}

.lp-section {
    padding: 110px 0;
}

.lp-white {
    background: #fff;
}

.lp-soft {
    background: #eef2f7;
}

.lp-blue {
    background:
        radial-gradient(circle at 80% 10%, rgba(242, 195, 19, 0.18), transparent 24%),
        linear-gradient(135deg, #061634, #0a3d91);
    color: #fff;
}

.lp-contact {
    background:
        radial-gradient(circle at top left, rgba(242, 195, 19, 0.18), transparent 24%),
        linear-gradient(180deg, #061634, #07142f);
    color: #fff;
}

.lp-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.lp-text-block h2,
.lp-section-title h2 {
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    margin-bottom: 24px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.lp-blue .lp-section-title h2,
.lp-contact .lp-section-title h2 {
    color: #fff;
}

.lp-text-block p,
.lp-section-title p {
    font-size: 1.08rem;
    color: #4c5565;
    margin-bottom: 18px;
}

.lp-blue .lp-section-title p,
.lp-contact .lp-section-title p {
    color: rgba(255, 255, 255, 0.82);
}

.lp-check-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.lp-check-list li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    color: #17233b;
}

.lp-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 13px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(242, 195, 19, 0.22);
}

.lp-image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-image-mosaic img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.lp-image-mosaic .lp-img-big {
    grid-column: span 2;
    height: 360px;
}

.lp-section-title {
    max-width: 850px;
    margin-bottom: 60px;
}

.lp-section-title.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.lp-service-block {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: center;
    background: #fff;
    padding: 46px;
    margin-bottom: 28px;
    box-shadow: 0 18px 50px rgba(7, 20, 47, 0.08);
}

.lp-service-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.lp-service-reverse .lp-service-copy {
    order: 2;
}

.lp-service-reverse .lp-service-gallery {
    order: 1;
}

.lp-service-number {
    display: inline-flex;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary);
    background: var(--accent);
    padding: 8px 13px;
    margin-bottom: 20px;
}

.lp-service-copy h3 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.lp-service-copy p {
    font-size: 1.05rem;
    color: #525b6b;
    margin-bottom: 22px;
}

.lp-service-copy ul {
    display: grid;
    gap: 10px;
}

.lp-service-copy li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    font-weight: 700;
    color: #17233b;
}

.lp-service-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--primary);
}

.lp-service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-service-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(7, 20, 47, 0.16);
}

.lp-service-gallery img:first-child {
    grid-column: span 2;
    height: 360px;
}

.lp-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-diff-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 32px 26px;
    min-height: 250px;
    backdrop-filter: blur(10px);
}

.lp-diff-card strong {
    display: inline-flex;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 36px;
}

.lp-diff-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
}

.lp-diff-card p {
    color: rgba(255, 255, 255, 0.8);
}

.lp-segment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.lp-segment-grid span {
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 18px 22px;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    border-left: 8px solid var(--accent);
    box-shadow: 0 16px 40px rgba(7, 20, 47, 0.16);
}

.lp-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lp-works-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 16px 42px rgba(7, 20, 47, 0.16);
    transition: 0.35s ease;
}

.lp-works-grid img:hover {
    transform: translateY(-8px);
}

.lp-cta-strip {
    background: var(--accent);
    color: #050505;
    padding: 54px 0;
}

.lp-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lp-cta-strip h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-cta-strip p {
    font-size: 1.1rem;
    color: #111;
}

.lp-footer {
    background: #030816;
    color: #fff;
    padding-top: 48px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 34px;
}

.lp-footer img {
    width: 90px;
    margin-bottom: 16px;
}

.lp-footer p,
.lp-footer a,
.lp-footer span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    margin-bottom: 8px;
}

.lp-footer h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    padding: 18px;
    font-size: 0.92rem;
}

/* FORMULÁRIO COMPLETO */
.badge,
.section-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(242, 195, 19, 0.12);
    border: 1px solid rgba(242, 195, 19, 0.28);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.full-btn {
    width: 100%;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.wizard-column,
.sidebar-column {
    min-width: 0;
}

.wizard-hero-card,
.wizard-card,
.sidebar-card {
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(15, 29, 52, 0.96), rgba(8, 16, 29, 0.98));
    box-shadow: var(--shadow);
}

.wizard-hero-card {
    padding: 26px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    margin-bottom: 22px;
}

.wizard-hero-card h2 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.2vw, 2.3rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wizard-hero-card p {
    color: rgba(255, 255, 255, 0.72);
}

.wizard-hero-badges {
    display: grid;
    gap: 12px;
}

.wizard-hero-badges span {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-left: 5px solid var(--accent);
    font-weight: 900;
    color: #fff;
}

.stepper-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    padding: 10px 6px;
}

.stepper-line {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
}

.stepper-item {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.stepper-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0b1830;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #9bb3dd;
    font-weight: 900;
    transition: 0.25s ease;
}

.stepper-item span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.stepper-item.active .stepper-dot,
.stepper-item.done .stepper-dot {
    background: var(--accent);
    color: #061634;
    border-color: transparent;
}

.stepper-item.active span,
.stepper-item.done span {
    color: #fff;
}

.wizard-form {
    position: relative;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeStep 0.35s ease;
}

@keyframes fadeStep {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-card {
    padding: 28px;
}

.wizard-card-head {
    margin-bottom: 22px;
}

.step-badge {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(242, 195, 19, 0.14);
    color: var(--accent);
    font-weight: 900;
    font-size: 0.84rem;
    margin-bottom: 12px;
}

.wizard-card-head h3 {
    font-family: var(--font-title);
    font-size: 1.55rem;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 8px;
}

.wizard-card-head p {
    color: rgba(255, 255, 255, 0.72);
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-span-2 {
    grid-column: span 2;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
}

.form-group label {
    font-weight: 800;
    color: #f4f7ff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    outline: none;
    transition: 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9fb0d2;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(242, 195, 19, 0.72);
    box-shadow: 0 0 0 4px rgba(242, 195, 19, 0.08);
    background: rgba(255, 255, 255, 0.075);
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "⌄";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #dce7ff;
    pointer-events: none;
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 46px;
}

.form-group select option {
    background: #132744;
    color: #f4f7ff;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

.choice-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
    transition: 0.22s ease;
}

.choice-card:hover {
    border-color: rgba(242, 195, 19, 0.44);
    background: rgba(255, 255, 255, 0.075);
}

.choice-card input {
    accent-color: var(--accent);
    flex-shrink: 0;
}

.choice-card-option {
    min-height: 92px;
    align-items: center;
    padding: 18px;
}

.choice-card-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.choice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    width: 100%;
}

.choice-content strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    color: #f4f7ff;
    word-break: break-word;
}

.choice-content small {
    display: block;
    font-size: 0.84rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.62);
    word-break: break-word;
}

.choice-card-center {
    justify-content: center;
    text-align: center;
}

.choice-card-center .choice-content {
    align-items: center;
}

.choice-grid-binary .choice-card-option {
    min-height: 72px;
}

.service-card-choice {
    min-height: 96px;
    justify-content: center;
    text-align: center;
}

.choice-card-option:has(input:checked) {
    border-color: rgba(242, 195, 19, 0.9);
    background: linear-gradient(180deg, rgba(242, 195, 19, 0.13), rgba(242, 195, 19, 0.04));
    box-shadow: 0 0 0 1px rgba(242, 195, 19, 0.25) inset;
}

.conditional-block {
    display: none;
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.conditional-block.active {
    display: block;
    animation: fadeStep 0.35s ease;
}

.conditional-head {
    margin-bottom: 16px;
}

.conditional-head h4 {
    font-size: 1.05rem;
    color: #fff;
    text-transform: uppercase;
}

.review-box {
    margin-top: 22px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 61, 145, 0.32), rgba(12, 77, 187, 0.12));
    border: 1px solid rgba(242, 195, 19, 0.18);
}

.review-box h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
}

.review-box p {
    color: rgba(255, 255, 255, 0.72);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.sidebar-column {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 24px;
}

.sidebar-card {
    padding: 24px;
}

.sidebar-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 10px;
}

.sidebar-card p {
    color: rgba(255, 255, 255, 0.72);
}

.sidebar-dark {
    background: #030816;
    border-left: 8px solid var(--accent);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 0;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, 0.78);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-form {
        max-width: 520px;
    }

    .lp-split,
    .lp-service-block,
    .lp-service-reverse,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .lp-service-reverse .lp-service-copy,
    .lp-service-reverse .lp-service-gallery {
        order: initial;
    }

    .lp-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-column {
        position: static;
    }

    .wizard-hero-card {
        grid-template-columns: 1fr;
    }

    .form-grid-4,
    .form-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .lp-hero {
        min-height: auto;
    }

    .lp-hero-grid {
        min-height: auto;
        padding: 62px 0;
    }

    .lp-hero h1 {
        font-size: 2.7rem;
    }

    .lp-section {
        padding: 78px 0;
    }

    .lp-service-block {
        padding: 28px;
    }

    .lp-service-gallery,
    .lp-image-mosaic,
    .lp-works-grid,
    .lp-diff-grid,
    .lp-segment-grid,
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lp-service-gallery img:first-child,
    .lp-image-mosaic .lp-img-big {
        grid-column: span 1;
    }

    .lp-cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .stepper-wrap {
        gap: 6px;
    }

    .stepper-item span {
        font-size: 0.75rem;
    }

    .choice-card-option,
    .service-card-choice {
        min-height: 84px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .lp-header-logo img {
        width: 124px;
    }

    .lp-hero h1 {
        font-size: 2.28rem;
    }

    .lp-hero p {
        font-size: 1rem;
    }

    .lp-hero-form {
        padding: 24px;
    }

    .lp-form-head {
        margin: -24px -24px 24px;
    }

    .lp-hero-actions,
    .wizard-actions {
        flex-direction: column;
    }

    .lp-btn,
    .wizard-actions .btn {
        width: 100%;
    }

    .lp-text-block h2,
    .lp-section-title h2 {
        font-size: 2.2rem;
    }

    .lp-service-copy h3 {
        font-size: 2rem;
    }

    .lp-service-gallery img,
    .lp-service-gallery img:first-child,
    .lp-image-mosaic img,
    .lp-image-mosaic .lp-img-big,
    .lp-works-grid img {
        height: 260px;
    }

    .form-grid-2,
    .form-grid-3,
    .form-grid-4,
    .choice-grid-2,
    .choice-grid-3 {
        grid-template-columns: 1fr;
    }

    .form-span-2 {
        grid-column: span 1;
    }

    .wizard-card,
    .wizard-hero-card,
    .sidebar-card {
        padding: 20px;
    }

    .stepper-item span {
        display: none;
    }

    .stepper-line {
        left: 10%;
        right: 10%;
    }

    .choice-card-option {
        min-height: auto;
        padding: 16px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
    }
}

@media (max-width: 680px) {
    .lp-header-logo img {
        position: relative;   /* TIRA O ABSOLUTE */
        top: 0;
        left: 0;
        transform: none;

        margin: 0 auto 20px auto;
        width: 90px;
    }

    .lp-hero-content {
        text-align: left;
    }
}