:root {
    --black: #050505;
    --panel: #0d0d0f;
    --panel-soft: #141417;
    --white: #f7f7f2;
    --muted: #bfc3c7;
    --dim: #6f7378;
    --line: rgba(247, 247, 242, 0.12);
    --line-strong: rgba(247, 247, 242, 0.22);
    --glass: rgba(13, 13, 15, 0.68);
    --glow: rgba(255, 255, 255, 0.16);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: min(1160px, calc(100vw - 40px));
    --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.075), transparent 30%),
        linear-gradient(180deg, #070708 0%, #050505 48%, #080809 100%),
        var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    display: none;
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
    opacity: 0.42;
    z-index: -5;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 20px;
    top: 18px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    transition: transform 0.25s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.ambient {
    position: fixed;
    width: 42vw;
    height: 42vw;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(44px);
    opacity: 0.24;
    z-index: -4;
    animation: ambientFloat 16s ease-in-out infinite alternate;
}

.ambient-one {
    left: -12vw;
    top: 12vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 68%);
}

.ambient-two {
    right: -18vw;
    top: 34vh;
    background: radial-gradient(circle, rgba(191, 195, 199, 0.28), transparent 70%);
    animation-delay: -5s;
}

.ambient-three {
    left: 28vw;
    bottom: -24vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
    animation-delay: -9s;
}

.section-shell {
    width: var(--container);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 16px 0 auto;
    z-index: 50;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.site-header.is-scrolled .navbar {
    background: rgba(5, 5, 5, 0.78);
    border-color: rgba(247, 247, 242, 0.18);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.navbar {
    width: var(--container);
    min-height: 72px;
    margin-inline: auto;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(13, 13, 15, 0.54);
    backdrop-filter: blur(22px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand img {
    filter: drop-shadow(0 8px 28px rgba(255, 255, 255, 0.12));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 12px 15px;
    border-radius: 999px;
    color: rgba(247, 247, 242, 0.76);
    font-size: 0.92rem;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-links .nav-cta {
    background: var(--white);
    color: var(--black);
    box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.08);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    padding-top: 156px;
    padding-bottom: 72px;
}

.hero-grid {
    min-height: calc(100vh - 220px);
    display: grid;
    grid-template-columns: minmax(0, 920px);
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.hero-copy {
    max-width: 920px;
}

.eyebrow,
.section-kicker,
.plan-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.eyebrow::before,
.section-kicker::before,
.plan-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
}

.hero h1,
.section-heading h2,
.offer-panel h2,
.showcase-copy h2,
.final-inner h2 {
    margin: 18px 0 0;
    max-width: 820px;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.2vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.hero-lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(247, 247, 242, 0.74);
    font-size: clamp(1.04rem, 1.6vw, 1.25rem);
    line-height: 1.75;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: -40% -20%;
    z-index: -1;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34), transparent 54%);
    transform: translateX(-120%) rotate(8deg);
    transition: transform 0.75s ease;
}

.button:hover::after {
    transform: translateX(120%) rotate(8deg);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.button-primary,
.button-light {
    background: var(--white);
    color: var(--black);
}

.button-ghost,
.button-card {
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
}

.promise-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
    max-width: 710px;
}

.promise-strip div,
.trust-item,
.process-card,
.testimonial-card,
.faq-item,
.price-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.promise-strip div {
    padding: 16px;
    border-radius: 18px;
}

.promise-strip strong,
.trust-item strong {
    display: block;
    color: var(--white);
    font-size: 0.98rem;
}

.promise-strip span,
.trust-item span {
    display: block;
    margin-top: 4px;
    color: var(--dim);
    font-size: 0.86rem;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.035);
}

.trust-item {
    padding: 20px;
    border-radius: 22px;
}

.offer-panel,
.showcase,
.final-cta {
    position: relative;
    overflow: hidden;
    margin-top: 110px;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.028));
    box-shadow: var(--shadow);
}

.offer-panel h2,
.showcase-copy h2,
.final-inner h2,
.section-heading h2 {
    font-size: clamp(2.05rem, 4vw, 4rem);
    line-height: 1.06;
}

.offer-panel p,
.section-heading p,
.showcase-copy p,
.final-inner p {
    max-width: 730px;
    color: rgba(247, 247, 242, 0.68);
    font-size: 1.05rem;
    line-height: 1.75;
}

.offer-orbit {
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    animation: spinSoft 18s linear infinite;
}

.offer-orbit::before,
.offer-orbit::after {
    content: "";
    position: absolute;
    inset: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: inherit;
}

.offer-orbit::after {
    inset: 76px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(12px);
}

.packages,
.process,
.testimonials,
.faq {
    padding-top: 118px;
}

.section-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.price-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 28px;
    border-radius: 30px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.price-card.featured {
    transform: translateY(-16px);
    border-color: rgba(255, 255, 255, 0.32);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.price-card.featured:hover {
    transform: translateY(-24px);
}

.card-glow {
    position: absolute;
    inset: auto -40% -36% -40%;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.price-card:hover .card-glow,
.price-card.featured .card-glow {
    opacity: 1;
}

.popular-pill {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 0.76rem;
    font-weight: 900;
}

.price-head h3 {
    margin: 14px 0 0;
    max-width: 260px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 26px;
    font-size: clamp(3.1rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.currency {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.25rem;
    letter-spacing: 0;
}

.price-note {
    min-height: 78px;
    color: rgba(247, 247, 242, 0.66);
    line-height: 1.65;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(247, 247, 242, 0.78);
    line-height: 1.45;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.button-card,
.price-card .button-primary {
    width: 100%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-card {
    min-height: 280px;
    padding: 25px;
    border-radius: 28px;
}

.process-card span {
    color: rgba(247, 247, 242, 0.38);
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.process-card h3 {
    margin: 28px 0 0;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.process-card p {
    color: rgba(247, 247, 242, 0.62);
    line-height: 1.7;
}

.showcase {
    display: grid;
    gap: 32px;
}

.feature-scroll-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.feature-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.feature-panel-head span {
    color: var(--white);
    font-size: 1.04rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.feature-panel-head strong {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: rgba(247, 247, 242, 0.72);
    font-size: 0.78rem;
}

.feature-scroll {
    max-height: 430px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 247, 242, 0.38) rgba(255, 255, 255, 0.06);
}

.feature-scroll::-webkit-scrollbar {
    width: 10px;
}

.feature-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
}

.feature-scroll::-webkit-scrollbar-thumb {
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(247, 247, 242, 0.36);
}

.feature-scroll ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 18px 20px 20px 42px;
}

.feature-scroll li {
    padding-left: 6px;
    color: rgba(247, 247, 242, 0.78);
    line-height: 1.5;
}

.feature-scroll li::marker {
    color: rgba(247, 247, 242, 0.38);
    font-weight: 800;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    padding: 26px;
    border-radius: 28px;
}

.stars {
    color: var(--white);
    letter-spacing: 0.16em;
    font-size: 0.82rem;
}

.testimonial-card p {
    min-height: 116px;
    color: rgba(247, 247, 242, 0.78);
    font-size: 1.04rem;
    line-height: 1.7;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person > span,
.person > img {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 900;
}

.person > img {
    object-fit: cover;
    object-position: center;
}

.person strong,
.person small {
    display: block;
}

.person small {
    margin-top: 3px;
    color: var(--dim);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    padding: 22px 54px 22px 22px;
    font-weight: 850;
    letter-spacing: -0.03em;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--muted);
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 22px 24px;
    color: rgba(247, 247, 242, 0.66);
    line-height: 1.7;
}

.final-cta {
    margin-bottom: 70px;
    text-align: center;
}

.final-inner {
    display: grid;
    justify-items: center;
}

.final-inner p {
    margin-inline: auto;
}

.final-actions {
    align-items: center;
    justify-content: center;
}

.final-actions span {
    color: var(--muted);
    font-weight: 700;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 0 110px;
    color: rgba(247, 247, 242, 0.56);
}

.site-footer div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 850;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(247, 247, 242, 0.96);
    color: var(--black);
    font-weight: 900;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.48);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
    filter: blur(5px);
    transition: opacity 0.46s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), filter 0.46s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.delay-1 { transition-delay: 0.04s; }
.delay-2 { transition-delay: 0.08s; }
.delay-3 { transition-delay: 0.12s; }
.delay-4 { transition-delay: 0.16s; }

@keyframes ambientFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(7vw, -4vh, 0) scale(1.14); }
}

@keyframes spinSoft {
    to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
    .hero-grid,
    .feature-scroll-grid,
    .showcase {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .pricing-grid,
    .testimonial-track {
        grid-template-columns: 1fr;
    }

    .price-card.featured,
    .price-card.featured:hover {
        transform: none;
    }

    .process-grid,
    .trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100vw - 28px, 1160px);
    }

    .site-header {
        inset: 10px 0 auto;
    }

    .navbar {
        min-height: 62px;
        padding: 8px 9px 8px 13px;
        border-radius: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 84px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(5, 5, 5, 0.94);
        backdrop-filter: blur(24px);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        padding: 14px 16px;
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1,
    .section-heading h2,
    .offer-panel h2,
    .showcase-copy h2,
    .final-inner h2 {
        letter-spacing: -0.045em;
    }

    .promise-strip,
    .trust-bar,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .offer-panel,
    .showcase,
    .final-cta {
        margin-top: 70px;
        padding: 26px;
        border-radius: 26px;
    }

    .packages,
    .process,
    .testimonials,
    .faq {
        padding-top: 76px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 13px 15px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
