:root {
    --primary: #DF5A21;
    --secondary: #18253B;
    --laranja: #BE574B;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins';
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.color-primary {
    color: var(--primary) !important;
}

.color-secondary {
    color: var(--secondary) !important;
}

.bg-green {
    background-color: #B9F8CF;
}

.bg-orange {
    background-color: #FFEDD4;
}

.bg-greenlight {
    background-color: #F0FDF4;
}

.border-green {
    border: 1px solid #B9F8CF;
}

.border-orange {
    border: 1px solid #FFD6A7;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: #fff;
    border: none;
}

    .btn-primary:hover,
    .btn-primary:focus {
        filter: brightness(0.95);
        color: #fff;
    }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 16px;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand img {
    height: 60px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-weight: 500;
}

    .main-nav a {
        text-decoration: none;
        color: var(--laranja);
        font-size: .95rem;
        opacity: .95;
    }

        .main-nav a:hover,
        .main-nav a:active,
        .main-nav a:focus{
            color: var(--laranja) !important;
        }

@media (min-width: 921px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        justify-content: flex-end;
    }

    .w-md-75 {
        width: 75% !important;
    }
}

.main {
    min-height: 70vh;
    background-color: #F4F5F7;
}

.site-footer {
    background: var(--secondary);
    color: #e5ecf6;
    padding: 36px 0 12px;
    bottom: 0 !important;
}

.brand-white {
    height: 54px;
    margin-bottom: 12px;
    max-width: 240px;
}

.tagline {
    margin: 0;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-right .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    color: #e5e7eb;
    transition: opacity .2s;
}

    .footer-right .social:hover {
        opacity: .85;
    }

.footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: left;
}

    .footer-bottom a {
        color: #e5e7eb;
        text-decoration: underline;
    }

.icon-custom {
    font-size: 40px !important;
}

.rounded {
    border-radius: 20px !important;
}

.rounded-top {
    border-radius: 20px 20px 0 0 !important;
}

.rounded-bottom {
    border-radius: 0 0 20px 20px !important;
}

.hero-checars {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background: url("img/fundo.jpg") center center / cover no-repeat;
    position: relative;
}

    .hero-checars::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(24,37,59,0.70) 0%, rgba(24,37,59,0.55) 40%, rgba(24,37,59,0.45) 100% );
    }

    .hero-checars > .container {
        position: relative;
        z-index: 1;
    }

input.text-uppercase::placeholder {
    text-transform: none;
}

.steps-viewport {
    overflow: hidden;
    width: 100%;
}

.steps-track {
    display: flex;
    width: 300%;
    transition: transform .35s ease;
}

.step-pane {
    flex: 0 0 100%;
    padding-right: .25rem;
}

.wizard-illustration {
    width: 420px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    background: #f4f6f8;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.fade-slide-in {
    animation: fadeSlide .25s ease both;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.wizard-illustration {
    width: 420px;
    max-width: 100%;
    aspect-ratio: 1/1;
    background: #f4f6f8;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.feature-card {
    border-radius: 16px;
    background: #F3F4F6;
}

    .feature-card::after {
        content: "";
        display: block;
        height: 0;
        border-radius: 16px;
    }

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.how-section {
    background: #F3F4F6;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    text-align: center;
    height: 250px;
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: .9rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    margin: 14px auto 14px;
    background: #DBEAFE;
    display: grid;
    place-items: center;
    font-size: 28px;
}

.stats-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.stat-card {
    background: transparent;
    padding: 8px 6px;
    color: #fff;
}

.stat-icon {
    height: 56px;
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.stat-value {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2;
}

.stat-caption {
    font-size: .95rem;
    color: rgba(255,255,255,.9);
}

.accordion-button {
    background: #fff;
    border-radius: .75rem !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #2b2f38;
}

    .accordion-button:not(.collapsed) {
        box-shadow: none;
        background: #f8fafc;
        color: #2b2f38;
    }

.accordion-item {
    background: transparent;
}

.accordion-body {
    padding: 1rem 1.25rem 1.25rem 3rem;
}

.accordion-button .material-symbols-outlined {
    color: var(--primary);
}

.help-pill {
    display: inline-flex;
    border: 2px solid #18253B;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

    .help-pill .btn {
        border: 0;
        border-radius: 0;
        padding: .55rem 1rem;
        font-weight: 600;
        line-height: 1.2;
    }

.btn-white-secondary {
    background: #fff;
    color: #18253B;
}

.help-pill .btn + .btn {
    border-left: 2px solid #18253B;
}

.help-pill .btn-secondary {
    background: var(--secondary);
    color: #fff;
}

    .help-pill .btn-secondary:hover {
        filter: brightness(.96);
    }

@media (max-width: 480px) {
    .help-pill .btn {
        padding: .5rem .85rem;
        font-size: .95rem;
    }
}

/*LOADING*/

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    text-align: center;
}

.spinner-line {
    width: 56px;
    height: 4px;
    margin: 0 auto 12px auto;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

    .spinner-line::before {
        content: "";
        position: absolute;
        left: -40%;
        top: 0;
        height: 100%;
        width: 40%;
        animation: slide 1s infinite linear;
        background: var(--laranja);
    }

.loading-text {
    font-weight: 600;
    color: var(--secondary);
}

@keyframes slide {
    0% {
        left: -40%
    }

    100% {
        left: 100%
    }
}
