:root {
    --bg: #040B17;
    --bg-soft: #081827;
    --surface: #10253D;
    --text: #F5F7FB;
    --muted: #BFC9D4;
    --accent: #22C55E;
    --accent-strong: #16A34A;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 70px rgba(2, 8, 23, 0.42);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg) 0%, #071525 45%, #040B17 100%);
    color: var(--text);
    line-height: 1.7;
}

::selection {
    background: rgba(34, 197, 94, 0.24);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 24%),
        radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.12), transparent 26%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 55%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    min-height: 84px;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    background: rgba(4, 11, 23, 0.68);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(4, 11, 23, 0.92);
    border-color: var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.nav-links a {
    transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.nav-cta {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: clamp(1.2rem, 2vw, 2rem);
    align-items: center;
    max-width: 1320px;
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(8.25rem, 10vw, 9rem) 5vw 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0.6rem;
}

.eyebrow {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.5rem 0.9rem;
    margin: 0 0 0.7rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(8px);
}

.hero h1 {
    font-size: clamp(2.7rem, 4.3vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 1.2rem;
    max-width: 760px;
}

.hero-copy {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 660px;
    margin: 0 0 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.7rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #1fb96a);
    color: #03120b;
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlights {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.hero-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.32);
    background: rgba(34, 197, 94, 0.08);
}

.hero-highlight-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.hero-highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height:100%;
    padding-top:0;
    margin-top:0;
}

.hero-visual-shell {
    width: min(100%, 760px);
    padding: 0.5rem;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
        0 20px 60px rgba(0, 0,0, 0.45),
        inset 0 0 60px rgba(45,130,255,0.12);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-visual-shell::before {
    content: "";
    position: absolute;
    inset: 8% 12% 14% 12%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 68%);
    filter: blur(28px);
    z-index: -1;
    animation: glowPulse 4.2s ease-in-out infinite;
}

.hero-image {
    display: block;
    width: min(108%, 620px);
    max-width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    animation: floatImage 3.6s ease-in-out infinite;
    filter: drop-shadow(0 20px 34px rgba(2, 8, 23, 0.35));
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent 45%, rgba(255,255,255,0.02));
    pointer-events: none;
}

.section-problema {
    background: rgba(6, 12, 24, 0.9);
}

.split-layout,
.benefits-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
    align-items: start;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--muted);
    max-width: 680px;
    margin: 0;
    font-size: 1.04rem;
}

.problem-grid {
    display: grid;
    gap: 1rem;
}

.problem-card {
    padding: 1.25rem 1.3rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.32);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.problem-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
}

.problem-card p {
    margin: 0;
    color: var(--muted);
}

.problem-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.24);
    margin-bottom: 0.85rem;
}

.problem-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-grid,
.steps-grid,
.card-grid {
    display: grid;
    gap: 1rem;
}

.feature-card,
.step-card,
.premium-card {
    padding: 1.4rem;
    border-radius: var(--radius);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.step-card:hover,
.premium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.28);
}

.feature-card h3,
.step-card h3,
.premium-card h3,
.hero-highlight-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.11rem;
}

.feature-card p,
.step-card p,
.premium-card p,
.benefit-item p,
.faq-answer p {
    margin: 0;
    color: var(--muted);
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.24);
    margin-bottom: 1rem;
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-process,
.section-process-2,
.section-faq {
    background: rgba(6, 12, 24, 0.9);
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
}

.step-card span {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}

.benefit-item + .benefit-item {
    margin-top: 0.95rem;
}

.benefit-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.02rem;
}

.process-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.049), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

.process-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.12), transparent 42%);
    pointer-events: none;
}

.process-copy {
    position: relative;
    z-index: 1;
}

.process-copy h2 {
    max-width: 540px;
    margin: 0;
}

.process-timeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: center;
}

.timeline-line,
.timeline-line-glow {
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.timeline-line {
    background: linear-gradient(90deg, rgba(255,255,255,0.16) 0%, rgba(34,197,94,0.36) 100%);
}

.timeline-line-glow {
    background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.18) 30%, rgba(34,197,94,0.55) 100%);
    transform: translateY(-50%) scaleX(0.2);
    transform-origin: left center;
    animation: timelineGrow 900ms cubic-bezier(.2,.8,.2,1) forwards;
}

.timeline-step {
    position: relative;
    padding: 1.15rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 32px rgba(2, 8, 23, 0.16);
    min-height: 154px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    opacity: 0;
    transform: translateY(10px);
    animation: timelineCardReveal 700ms ease forwards;
}

.timeline-step:nth-of-type(1) { animation-delay: 0.08s; }
.timeline-step:nth-of-type(2) { animation-delay: 0.16s; }
.timeline-step:nth-of-type(3) { animation-delay: 0.24s; }
.timeline-step:nth-of-type(4) { animation-delay: 0.32s; }
.timeline-step:nth-of-type(5) { animation-delay: 0.4s; }

.timeline-step:hover {
    transform: translateY(-4px);
    border-color: rgba(34,197,94,0.32);
    box-shadow: 0 22px 40px rgba(2, 8, 23, 0.22);
}

.timeline-step-number {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.55rem;
}

.timeline-step-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.24);
    margin-bottom: 0.7rem;
}

.timeline-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-step h3 {
    margin: 0;
    font-size: 0.96rem;
}

.timeline-step.is-active {
    border-color: rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.14);
    box-shadow: 0 22px 40px rgba(2, 8, 23, 0.24);
}

.faq-shell {
    display: grid;
    gap: 1.7rem;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    background: transparent;
    color: var(--text);
    border: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.faq-icon {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
    padding: 0 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 240px;
    padding: 0 1.2rem 1.1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.cta-section {
    padding-top: 3rem;
}

.cta-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(34,197,94,0.16), rgba(16,37,61,0.94));
    border: 1px solid rgba(34,197,94,0.2);
    box-shadow: var(--shadow);
}

.cta-card p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 1.4rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    color: var(--muted);
}

.footer-brand .brand-logo {
    width: 150px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glide {
    to {
        transform: skewX(-20deg) translateX(120%);
    }
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chartRise {
    from {
        transform: scaleY(0.2);
        transform-origin: center bottom;
    }
    to {
        transform: scaleY(1);
        transform-origin: center bottom;
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes lineFlow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.55;
    }
    50% {
        stroke-dashoffset: 8;
        opacity: 0.95;
    }
}

@keyframes timelineGrow {
    from {
        transform: translateY(-50%) scaleX(0.2);
        opacity: 0.4;
    }
    to {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
    }
}

@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes timelineCardReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .process-shell {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .process-copy h2 {
        max-width: 100%;
    }

    .process-timeline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6.5rem;
        gap: 1.4rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-visual {
        order: -1;
        padding-top: 0;
    }

    .hero-visual-shell {
        min-height: 360px;
        width: min(100%, 620px);
    }

    .hero-image {
        width: min(100%, 590px);
        max-height:340px;
    }

    .split-layout,
    .benefits-layout,
    .process-panel {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .steps-grid,
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .navbar {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.95rem 1rem;
    }

    .process-shell {
        padding: 1.3rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .timeline-line,
    .timeline-line-glow {
        display: none;
    }

    .timeline-step {
        min-height: 124px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        order: 3;
    }

    .hero {
        padding: 8.5rem 1rem 3rem;
        gap: 1.25rem;
    }

    .hero-visual {
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .hero-visual-shell {
        width: min(100%, 360px);
        max-width: 100%;
        padding: 0.7rem;
        min-height: auto;
        height: auto;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .feature-grid,
    .steps-grid,
    .card-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-panel {
        padding: 1.4rem;
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-visual-shell {
    position: relative;
}

/* ===== Hero Signature ===== */

.hero-signature {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-signature span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.header-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #F5F7FB;
    text-decoration: none;
    transition: 0.25s ease;
}

.header-instagram:hover {
    margin-right: 0;
    border-color: #16A34A;
    color: #16A34A;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===========================
   CONTACT SECTION
=========================== */

/* FORM CONTAINER */

.section-contact {
    padding: 7rem 0;
}

.section-contact .form-container {
    width: min(100%, 900px);
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(16, 37, 61, 0.92), rgba(8, 24, 39, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 58px rgba(2, 8, 23, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-sizing: border-box;
}

.section-contact .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-contact .form-header h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.1;
    color: var(--text);
    margin: 1rem 0 0.8rem;
}

.section-contact .form-header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
}

/* INPUTS */

.section-contact .lead-form {
    width: 100%;
}

.section-contact .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.section-contact .form-grid input,
.section-contact .form-grid textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.section-contact .form-grid input::placeholder,
.section-contact .form-grid textarea::placeholder {
    color: rgba(191, 201, 212, 0.74);
}

.section-contact .form-grid input:focus,
.section-contact .form-grid textarea:focus {
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.section-contact .form-grid textarea {
    grid-column: 1 / -1;
    min-height: 180px;
    resize: vertical;
}

.section-contact #site,
.section-contact #objetivo {
    grid-column: 1 / -1;
}

/* BUTTON */

.section-contact .lead-form button {
    width: 100%;
    margin-top: 1.4rem;
    min-height: 3.2rem;
    padding: 1rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #1fb96a);
    color: #03120b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.section-contact .lead-form button:hover,
.section-contact .lead-form button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(34, 197, 94, 0.3);
    filter: brightness(1.03);
}

/* RESPONSIVO */

@media (max-width: 760px) {
    .section-contact {
        padding: 5.5rem 0 6rem;
    }

    .section-contact .form-container {
        padding: 1.6rem;
        border-radius: 24px;
    }

    .section-contact .form-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .section-contact #site,
    .section-contact #objetivo {
        grid-column: auto;
    }
}