:root {
    --preto: #050505;
    --preto-2: #111111;
    --amarelo: #ffc400;
    --amarelo-2: #ffd84d;
    --branco: #ffffff;
    --cinza: #f4f4f4;
    --texto: #d8d8d8;
    --borda: rgba(255,255,255,.12);
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--preto);
    color: var(--branco);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--borda);
}

.navbar {
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    margin-left: 12px;
}

.logo span {
    color: var(--amarelo);
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 100;
    font-size: 0.95rem;
    justify-content: flex-end;
    flex: 2 1 0%;
}

.menu a:hover {
    color: var(--amarelo);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--amarelo);
    color: var(--preto);
    font-weight: 900;
    border: 2px solid var(--amarelo);
    transition: 0.25s;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--amarelo);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--amarelo);
}

.btn-outline:hover {
    background: var(--amarelo);
    color: var(--preto);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0px 70px;
    background: radial-gradient(circle at right top, rgba(255, 196, 0, 0.18), transparent 35%), linear-gradient(135deg, rgb(5, 5, 5) 0%, rgb(17, 17, 17) 55%, rgb(7, 7, 7) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.12);
    color: var(--amarelo);
    border: 1px solid rgba(255, 196, 0, 0.35);
    font-weight: 800;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

h1 span {
    color: var(--amarelo);
}

.hero p {
    color: var(--texto);
    font-size: 1.18rem;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-card {
    position: relative;
    min-height: 460px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 196, 0, 0.95), rgba(255, 216, 77, 0.75));
    padding: 34px;
    color: var(--preto);
    box-shadow: rgba(255, 196, 0, 0.18) 0px 30px 80px;
    overflow: hidden;
}

.hero-card::after {
    content: "R013";
    position: absolute;
    right: -20px;
    bottom: -55px;
    font-size: 8rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(0, 0, 0, 0.08);
}

.phone-box {
    background: rgba(0, 0, 0, 0.88);
    color: var(--branco);
    border-radius: 28px;
    padding: 26px;
    max-width: 380px;
    margin-left: auto;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 20px 55px;
}

.phone-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    box-shadow: rgba(37, 211, 102, 0.12) 0px 0px 0px 7px;
}

.chat {
    display: grid;
    gap: 14px;
}

.msg {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    background: rgb(31, 31, 31);
    color: rgb(241, 241, 241);
}

.msg.yellow {
    background: rgb(37, 211, 102);
    color: var(--preto);
    font-weight: 100;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.stat {
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--borda);
    border-radius: 22px;
}

.stat strong {
    display: block;
    color: var(--amarelo);
    font-size: 1.6rem;
    line-height: 1;
}

section {
    padding: 90px 0px;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0px auto 50px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
}

.section-title h2 span {
    color: var(--amarelo);
}

.section-title p {
    color: var(--texto);
    font-size: 1.05rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    border: 1px solid var(--borda);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 196, 0, 0.45);
}

.icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffd84d, #34280a);
    color: var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p, .card li {
    color: var(--texto);
}

.flow {
    background: var(--branco);
    color: var(--preto);
}

.flow .section-title p {
    color: rgb(85, 85, 85);
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step {
    background: rgb(247, 247, 247);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 24px;
    padding: 24px;
    position: relative;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--preto);
    color: var(--amarelo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 14px;
}

.step p {
    color: rgb(85, 85, 85);
    font-size: 0.95rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.list-card {
    border-radius: 32px;
    padding: 36px;
    background: var(--preto-2);
    border: 1px solid var(--borda);
}

.list-card.yellow {
    background: linear-gradient(135deg, #ffd84d, #b07e06);
    color: var(--preto);
}

.list-card.yellow li, .list-card.yellow p {
    color: rgb(31, 31, 31);
}

.list-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

li::before {
    content: "✓";
    flex: 0 0 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    margin-top: 2px;
}

.list-card.yellow li::before {
    background: var(--preto);
    color: var(--amarelo);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cta {
    background: linear-gradient(135deg, #ffd84d, #de9e07);
    color: var(--preto);
    text-align: center;
}

.cta h2 {
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta p {
    max-width: 680px;
    margin: 0px auto 28px;
    color: rgb(34, 34, 34);
    font-size: 1.1rem;
}

.cta .btn {
    background: var(--preto);
    color: var(--amarelo);
    border-color: var(--preto);
}

.cta .btn:hover {
    background: transparent;
    color: var(--preto);
}

footer {
    padding: 38px 0px;
    border-top: 1px solid var(--borda);
    text-align: center;
    color: var(--texto);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgb(37, 211, 102);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: rgba(37, 211, 102, 0.35) 0px 12px 35px;
    animation: 1.8s ease 0s infinite normal none running pulse;
}

@keyframes pulse {
    0% {
        box-shadow: rgba(37, 211, 102, 0.45) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(37, 211, 102, 0) 0px 0px 0px 18px;
    }

    100% {
        box-shadow: rgba(37, 211, 102, 0) 0px 0px 0px 0px;
    }
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--borda);
    background: transparent;
    color: var(--branco);
    border-radius: 12px;
    font-size: 1.4rem;
}

.imglogo {
    width: 90%;
}

@media (max-width: 980px) {
    .hero-grid, .split, .mission-grid {
        grid-template-columns: 1fr;
    }

    .imglogo {
        width: 90%;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card {
        min-height: auto;
    }

    .phone-box {
        margin: 0px;
    }
}

@media (max-width: 720px) {
    .navbar {
        height: 70px;
        justify-content: space-between;
    }

    .imglogo {
        width: 90%;
    }

    .mobile-toggle {
        display: block;
    }

    .logo {
        display: none;
    }

    .badge {
        font-weight: 100;
    }

    h1 {
        font-size: 22px;
    }

    .btn {
        width: 90%;
        font-weight: 100;
        margin: auto;
    }

    .menu {
        position: fixed;
        left: 0px;
        top: 70px;
        width: 100%;
        padding: 24px;
        background: rgba(5, 5, 5, 0.97);
        border-bottom: 1px solid var(--borda);
        flex-direction: column;
        align-items: flex-start;
        transform: translateY(-130%);
        transition: 0.25s;
    }

    .menu.active {
        transform: translateY(0px);
    }

    .menu .btn {
        width: 100%;
    }

    .hero {
        padding-top: 115px;
    }

    h1 {
        letter-spacing: -1.5px;
    }

    .cards, .steps, .stats {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    section {
        padding: 70px 0px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
    }

    footer {
        font-size: 12px;
    }
}
