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

:root {
    --dark: #0a0a0b;
    --dark2: #111113;
    --light: #f4f4f6;
    --red1: #ff1a4a;
    --red2: #c41230;
    --primary: #ef1443;
    --card-dark: rgba(255, 255, 255, 0.05);
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: #e0e0e3;
    --font-h: 'Sora', sans-serif;
    --font-b: 'Plus Jakarta Sans', sans-serif;
    --header-height: 78px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-b);
    color: #fff;
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

@media(min-width:768px) {
    .container {
        padding: 0 32px
    }
}

.text-red {
    color: var(--primary)
}

.text-red-grad {
    background: linear-gradient(135deg, var(--red1), var(--red2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-label {
    font-family: var(--font-h);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px
}

@media(min-width:768px) {
    .section-label {
        font-size: .8rem
    }
}

.section-title {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 16px
}

@media(min-width:640px) {
    .section-title {
        font-size: 2.5rem
    }
}

@media(min-width:768px) {
    .section-title {
        font-size: 3.2rem;
        margin-bottom: 20px
    }
}

.section-title em {
    font-style: italic;
    color: var(--primary)
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.anim {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

.anim.visible {
    opacity: 1;
    transform: translateX(0)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 11, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: padding .3s, background .3s;
    height: var(--header-height);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 11, .96);
}

@media(min-width:768px) {
    header {
        padding: 18px 0
    }

    header.scrolled {
        padding: 14px 0
    }
}

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

.header-logo-link {
    display: block;
    line-height: 0
}

.header-logo {
    height: 32px;
    display: block
}

@media(min-width:640px) {
    .header-logo {
        height: 38px
    }
}

@media(min-width:768px) {
    .header-logo {
        height: 44px
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 28px
}

@media(min-width:1024px) {
    .nav {
        display: flex;
        gap: 32px
    }
}

.nav a {
    font-family: var(--font-h);
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .2s
}

.nav a:hover,
.nav a.active {
    color: #fff
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    transition: all .3s;
    border: none;
    cursor: pointer
}

.nav-cta:hover {
    background: var(--red1);
    box-shadow: 0 4px 20px rgba(239, 20, 67, .4)
}

.nav a.nav-lp {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .875rem;
    color: var(--primary);
    text-decoration: none;
    transition: color .2s
}

.nav a.nav-lp:hover {
    color: var(--red1)
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

@media(min-width:1024px) {
    .mobile-toggle {
        display: none
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: var(--dark);
    z-index: 99;
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .2s
}

.mobile-menu a:hover {
    color: var(--primary)
}

@media(min-width:640px) {
    .mobile-menu {
        padding: 32px 24px;
        gap: 12px
    }

    .mobile-menu a {
        font-size: 1.1rem;
        padding: 16px 0
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 20px) 20px 20px;
    background: var(--dark);
    position: relative;
    overflow: hidden
}

@media(min-width:768px) {
    .hero {
        padding: calc(var(--header-height) + 20px) 32px 20px
    }
}

.hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero>div {
    position: relative;
    z-index: 1;
    max-width: 100%
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-h);
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(239, 20, 67, .35);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeUp .6s ease .1s both
}

@media(min-width:640px) {
    .hero-badge {
        font-size: .85rem;
        padding: 8px 24px;
        margin-bottom: 32px
    }
}

.hero h1 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.15;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 20px;
    animation: fadeUp .7s ease .2s both;
    padding: 0 8px
}

@media(min-width:480px) {
    .hero h1 {
        font-size: 2.5rem
    }
}

@media(min-width:768px) {
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 24px;
        padding: 0
    }
}

@media(min-width:1024px) {
    .hero h1 {
        font-size: 4.8rem
    }
}

.hero h1 span {
    color: var(--primary)
}

.hero-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .55);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeUp .6s ease .35s both;
    padding: 0 8px
}

@media(min-width:640px) {
    .hero-sub {
        font-size: 1.05rem;
        margin-bottom: 40px
    }
}

@media(min-width:768px) {
    .hero-sub {
        font-size: 1.15rem;
        padding: 0
    }
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    animation: fadeUp .6s ease .5s both;
    padding: 0 8px
}

@media(min-width:480px) {
    .hero-btns {
        flex-direction: row;
        align-items: center;
        gap: 14px
    }
}

@media(min-width:768px) {
    .hero-btns {
        padding: 0
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    border: none;
    white-space: nowrap
}

@media(min-width:640px) {
    .btn {
        font-size: 1.05rem;
        padding: 16px 32px
    }
}

.btn-red {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(239, 20, 67, .3)
}

.btn-red:hover {
    background: var(--red1);
    box-shadow: 0 8px 30px rgba(239, 20, 67, .45);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .08)
}

/* ── SEÇÕES (fix: desconta header do min-height + padding-top pra não ficar atrás) ── */
.sec-dark,
.sec-light {
    min-height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

@media(min-width:768px) {

    .sec-dark,
    .sec-light {
        padding: 60px 0;
    }
}

.sec-dark {
    background: var(--dark)
}

.sec-light {
    background: var(--light);
    color: var(--dark)
}

.sec-dark>.container,
.sec-light>.container {
    width: 100%
}

.sec-light .section-title {
    color: var(--dark)
}

.sec-light .section-title em {
    color: var(--primary)
}

.srv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px
}

@media(min-width:640px) {
    .srv-grid {
        gap: 24px;
        margin-top: 36px
    }
}

@media(min-width:768px) {
    .srv-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px
    }
}

.srv-card {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    background: #fff;
    transition: border-color .3s
}

@media(min-width:640px) {
    .srv-card {
        padding: 32px
    }
}

.sec-dark .srv-card {
    background: var(--card-dark);
    border-color: var(--border-dark)
}

.sec-dark .srv-card .srv-title {
    color: #fff
}

.sec-dark .srv-card .srv-desc {
    color: rgba(255, 255, 255, .55)
}

.sec-dark .srv-card .srv-item {
    color: rgba(255, 255, 255, .7)
}

.srv-card:hover {
    border-color: rgba(239, 20, 67, .35)
}

.srv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 20, 67, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

@media(min-width:640px) {
    .srv-icon {
        margin-bottom: 24px
    }
}

.srv-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.srv-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px
}

@media(min-width:640px) {
    .srv-title {
        font-size: 1.3rem
    }
}

.srv-desc {
    font-size: .875rem;
    color: #71717a;
    line-height: 1.7;
    margin-bottom: 16px
}

@media(min-width:640px) {
    .srv-desc {
        font-size: .9rem;
        margin-bottom: 20px
    }
}

.srv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: #555;
    margin-bottom: 8px
}

@media(min-width:640px) {
    .srv-item {
        font-size: .9rem
    }
}

.srv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px
}

@media(min-width:640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 36px
    }
}

@media(min-width:768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 40px
    }
}

.step-item {
    text-align: center
}

.step-icon-box {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: rgba(239, 20, 67, .1);
    display: flex;
    align-items: center;
    justify-content: center
}

.step-icon-box svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-h);
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px
}

@media(min-width:640px) {
    .step-title {
        font-size: 1.1rem
    }
}

.sec-light .step-title {
    color: var(--dark)
}

.step-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

@media(min-width:640px) {
    .step-desc {
        font-size: .9rem
    }
}

.sec-light .step-desc {
    color: #71717a
}

.port-wrapper {
    margin-top: 36px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width:768px) {
    .port-wrapper {
        margin-top: 44px
    }
}

.port-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

@media(min-width:640px) {
    .port-row {
        gap: 24px;
        margin-bottom: 24px
    }
}

@media(min-width:768px) {
    .port-row {
        gap: 28px;
        margin-bottom: 28px
    }
}

.port-row:last-child {
    margin-bottom: 0;
}

.port-row.row-3 {
    grid-template-columns: 1fr;
}

@media(min-width:768px) {
    .port-row.row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.port-row.row-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
}

@media(min-width:640px) {
    .port-row.row-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }
}

.port-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #d4d4d8;
    border-radius: 16px;
    padding: 32px 24px;
    height: 140px;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    text-decoration: none;
}

@media(min-width:640px) {
    .port-card {
        height: 150px;
        padding: 36px 28px
    }
}

@media(min-width:768px) {
    .port-card {
        height: 160px;
        padding: 40px 32px
    }
}

.port-card:hover {
    border-color: #71717a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.port-card img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 60px;
    opacity: 0.65;
    transition: opacity .35s;
}

@media(min-width:640px) {
    .port-card img {
        max-height: 65px
    }
}

@media(min-width:768px) {
    .port-card img {
        max-height: 70px
    }
}

.port-card:hover img {
    opacity: 1;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px
}

@media(min-width:640px) {
    .diff-grid {
        gap: 28px;
        margin-top: 36px
    }
}

@media(min-width:768px) {
    .diff-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 40px
    }
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

@media(min-width:640px) {
    .diff-item {
        gap: 16px
    }
}

.diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 20, 67, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(239, 20, 67, .15)
}

.diff-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.diff-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 4px
}

@media(min-width:640px) {
    .diff-title {
        font-size: 1rem
    }
}

.sec-light .diff-title {
    color: var(--dark)
}

.diff-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

@media(min-width:640px) {
    .diff-desc {
        font-size: .875rem
    }
}

.sec-light .diff-desc {
    color: #71717a
}

.contact-form-wrap {
    max-width: 640px;
    margin: 32px auto 0;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 28px 20px
}

@media(min-width:640px) {
    .contact-form-wrap {
        margin-top: 36px;
        padding: 36px 28px
    }
}

.sec-light .contact-form-wrap {
    background: #fff;
    border-color: var(--border-light)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px
}

@media(min-width:640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px
    }
}

.form-group label {
    display: block;
    font-family: var(--font-h);
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 8px;
    text-align: left
}

@media(min-width:640px) {
    .form-group label {
        font-size: .85rem
    }
}

.sec-light .form-group label {
    color: var(--dark)
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-b);
    font-size: 1rem;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    transition: border-color .2s;
    outline: none
}

@media(min-width:640px) {

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 14px 16px
    }
}

.sec-light .form-group input,
.sec-light .form-group textarea {
    background: var(--light);
    border-color: var(--border-light);
    color: var(--dark)
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary)
}

.form-group textarea {
    min-height: 110px;
    resize: vertical
}

@media(min-width:640px) {
    .form-group textarea {
        min-height: 120px
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .3)
}

.sec-light .form-group input::placeholder,
.sec-light .form-group textarea::placeholder {
    color: #aaa
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px 32px
}

@media(min-width:640px) {
    .btn-submit {
        font-size: 1.1rem;
        padding: 18px 32px
    }
}

footer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--dark)
}

@media(min-width:768px) {
    footer {
        padding: 28px 0
    }
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center
}

@media(min-width:768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 16px
    }
}

.footer-logo {
    height: 24px
}

@media(min-width:640px) {
    .footer-logo {
        height: 28px
    }
}

.footer-copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35)
}

@media(min-width:640px) {
    .footer-copy {
        font-size: .8rem
    }
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

@media(min-width:768px) {
    .footer-links {
        gap: 24px;
        justify-content: flex-start
    }
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s
}

@media(min-width:640px) {
    .footer-links a {
        font-size: .85rem
    }
}

.footer-links a:hover {
    color: #fff
}

.footer-ig {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s
}

@media(min-width:640px) {
    .footer-ig {
        font-size: .85rem
    }
}

.footer-ig:hover {
    color: var(--primary)
}

.footer-ig svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s
}

@media(min-width:640px) {
    .whatsapp-fab {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px
    }
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, .5)
}

.whatsapp-fab svg {
    width: 26px;
    height: 26px
}

@media(min-width:640px) {
    .whatsapp-fab svg {
        width: 28px;
        height: 28px
    }
}