* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    background: radial-gradient(ellipse at top right, hsl(195 100% 65% / .45), transparent 60%), linear-gradient(135deg, hsl(215 70% 28%) 0%, hsl(208 75% 42%) 55%, hsl(200 80% 55%) 100%);
}

html{
    scrollbar-width: none;
}

.main-container {
    padding: 0px 64px;

}

.main-header {
    padding: 0 64px;
}

.btn-primary {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.8rem 1.5rem;
    font-size: 16px;
    border-radius: 12px;
    color: white;
}

.destaque_nav_texto {
    color: #3fda65;
    cursor: pointer;
}

.btn-enviar-cadastro {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.8rem 1.5rem;
    font-size: 16px;
    border-radius: 12px;
    color: white;
    width: 100%;
}

.btn-outline {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: #0A3977;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-links-apresentacao {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links-apresentacao a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.hero {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding: 40px 0;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
}

.div_texto_hero {
    width: 550px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, hsl(135deg 67.41% 54.97%), hsl(150 90% 65%));
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    color: #ffffffbf;
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.625;
}

.hero strong {
    color: #ffffff;
    font-weight: 600;
}

.img_motoboy {
    width: 400px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid #ffffff4d;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    margin-top: 8px
}

.section-title-index {
    text-align: start;
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    margin-top: 8px
}

.section-sub-index {
    text-align: start;
    color: #ffffffbf;
    margin-bottom: 18px;
}

.section-sub {
    text-align: center;
    color: #ffffffbf;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-sub span {
    color: #22c55e;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid #478cd1;
    border-radius: 24px;
    padding: 1.5rem;
    color: black;
    box-shadow: 0 20px 50px -12px hsl(217 80% 6% / .35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon h3 {
    font-weight: 600;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.div_btns_planos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn_cancelar_plano {
    background: linear-gradient(90deg, #ef4444, #f87171);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.8rem 1.5rem;
    font-size: 16px;
    border-radius: 12px;
    color: white;
    width: 100%;
    margin-top: auto;
}

.feature-card p {
    color: #5c6f8a;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: black;
}

.pricing-card.popular {
    border-top: 3px solid #3fda65;
    position: relative;
}

.img_logo_header {
    width: 56px;
    height: 56px;
    border-radius: 20%;
    cursor: pointer;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3fda65;
    color: #020617;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.price {
    font-size: 2.5rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.price span {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

.pricing-card ul {
    list-style: none;
    margin: 24px 0;
    text-align: start;
}

.pricing-card li {
    padding: 8px 0px;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.texto_destaque_titulo {
    background: linear-gradient(135deg, hsl(135deg 67.41% 54.97%), hsl(150 90% 65%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.div_acoes_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn_nav_header {
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
}

.pricing-card li i {
    color: #22c55e;
}

.cta-section {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 32px;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.div_btn_hero {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.container_checks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.div_checks_finais {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icone_check {
    background-color: white;
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 50%;
}

.texto_destaque_section {
    color: #3fda65;
    letter-spacing: 0.2rem;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.texto_destaque_section_index {
    color: #3fda65;
    letter-spacing: 0.2rem;
    font-weight: 700;
    font-size: 12px;
    text-align: start;
    display: block;
    text-transform: uppercase;
}

.container_final {
    padding: 0px 64px;
    padding-bottom: 4rem;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.titulo_cadastro {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 0.3rem;
}

.texto_nav_cadastro {
    font-size: 14px;
}

.sub {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
    font-size: 14px;
}

.container_input_group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group label {
    margin-bottom: 0.3rem;
    display: block;
    font-size: 13px;
    color: #334155;
}

.input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    transition: all 0.2s ease;
}

.input::placeholder {
    color: #94a3b8;
}

.input:focus {
    border-color: #0A3977;
    background: white;
    outline: none;
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #0f172a;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 18px;
}

.footer a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.btn_assinar_cta {
    padding: 8px 20px;
    border-radius: 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 16px;
}

.input.errado {
    border: 1px solid #ef4444 !important;
    background: #fef2f2;
}

.erro {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    display: none;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.btn_assinar_planos {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.8rem 1.5rem;
    font-size: 16px;
    border-radius: 12px;
    color: white;
    width: 100%;
    margin-top: auto;
}

.div_menu_celular{
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 0px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    background-color: #0A3977;
    padding: 1rem;
    box-sizing: border-box;
    color: white;
    gap: 1rem;
    border-bottom-left-radius: 8px;
    text-align: center;
    transition: ease-in 0.3s;
}

.btn_cadastrar_header{
    background: linear-gradient(90deg, #22c55e, #4ade80);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

#telefone_api {
    width: 260px;
}

.btn_entrar_header{
    background: white;
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.div_menu_celular a{
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.div_menu_celular a:visited{
    color: white;
}

.div_menu_lateral{
    display: none;
}

@media(max-width: 900px) {
    .main-container {
        padding: 0px 32px;
    }

    .div_menu_lateral{
        display: flex;
    }

    .section-title-index {
        font-size: 24px;
    }

    .btn_salvar_numero {
        width: 100%;
    }

    .div_input_numero {
        width: 100%;
    }

    #telefone_api {
        width: 100%;
    }

    .main-header {
        padding: 0px 32px;
    }

    .acoes-perfil {
        flex-direction: column;
    }

    .nav-links-index {
        display: none;
    }

    .card-perfil {
        padding: 1rem;
    }

    .container_final {
        padding: 0px 32px;
        padding-bottom: 4rem;
    }

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .div_btn_hero{
        justify-content: center;
    }

    .hero h1{
        font-size: 3rem;
    }

    .div_texto_hero{
        width: 100%;
    }

    .img_motoboy{
        width: 300px;
    }

    .nav-links-apresentacao{
        display: none;
    }
}