/* =========================================================
   RSE SOLUÇÕES — PÁGINA DE CADASTRO
   cadastro.css

   DESKTOP — VERSÃO REESTRUTURADA
   Mobile será desenvolvido posteriormente.
   ========================================================= */


/* =========================================================
   1. VARIÁVEIS
   ========================================================= */

:root {

    --green: #00DA00;
    --black: #050505;
    --white: #ffffff;

    --text: #d6d6d6;
    --text-muted: #8c8c8c;

    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.05);

    --border-green: rgba(0, 218, 0, 0.25);

    --card: rgba(255, 255, 255, 0.025);
    --card-hover: rgba(0, 218, 0, 0.035);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    --radius: 24px;

    --transition: 0.3s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    background: var(--black);
    color: var(--white);

    font-family: "Poppins", sans-serif;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


button,
a,
input {
    font-family: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   3. PÁGINA
   ========================================================= */

.cadastro-page {
    position: relative;
    z-index: 0;

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
    overflow-y: visible;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 218, 0, 0.055),
            transparent 32%
        ),
        var(--black);
}


/* =========================================================
   4. GLOW AMBIENTAL
   ========================================================= */

.cadastro-page::before {
    content: "";

    position: absolute;

    top: -250px;
    left: 50%;

    width: 650px;
    height: 500px;

    transform: translateX(-50%);

    background:
        rgba(0, 218, 0, 0.045);

    filter: blur(120px);

    pointer-events: none;
}


/* =========================================================
   5. HEADER
   ========================================================= */

.cadastro-header {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 50px 40px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   6. IDENTIDADE / PARCERIA
   ========================================================= */

.brand-partnership {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    user-select: none;
}


.brand-logo {
    display: block;

    width: auto;

    object-fit: contain;
}


.brand-logo-rse {
    height: 42px;
}


.brand-logo-igreen {
    height: 36px;

    filter:
        drop-shadow(
            0 0 12px
            rgba(0, 218, 0, 0.08)
        );
}


.brand-plus {
    color: rgba(255, 255, 255, 0.55);

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   7. CONTAINER PRINCIPAL
   ========================================================= */

.cadastro-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 48px 40px 65px;

    flex: 1;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   8. INDICADOR DE PROGRESSO
   ========================================================= */

.progress-wrapper {
    width: 100%;

    margin-bottom: 58px;
}


.progress-steps {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 9px;

    min-width: 78px;
}


.progress-number {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    color: #777;

    font-size: 13px;
    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.025);

    transition: var(--transition);
}


.progress-label {
    color: #686868;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: var(--transition);
}


/* ETAPA ATIVA */

.progress-step.active .progress-number {
    border-color: var(--green);

    color: var(--black);

    background: var(--green);

    box-shadow:
        0 0 0 5px
            rgba(0, 218, 0, 0.08),
        0 0 25px
            rgba(0, 218, 0, 0.2);
}


.progress-step.active .progress-label {
    color: var(--green);
}


/* LINHAS */

.progress-line {
    width: 145px;
    height: 1px;

    margin:
        0 14px 29px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.045)
        );
}


/* =========================================================
   9. ETAPAS
   ========================================================= */

.cadastro-step {
    width: 100%;

    display: none;

    animation:
        stepEnter
        0.45s ease both;
}


.cadastro-step.active {
    display: block;
}


.cadastro-step[hidden] {
    display: none;
}


@keyframes stepEnter {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   10. CABEÇALHO DAS ETAPAS
   ========================================================= */

.step-header {
    width: 100%;

    margin-bottom: 80px;

    text-align: center;
}


.step-kicker {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.step-header h1,
.step-header h2 {
    width: max-content;
    max-width: 1100px;

    margin: 0 auto;

    color: var(--white);

    font-family: "Anton", sans-serif;

    font-size:
        clamp(44px, 5vw, 64px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


.step-header h1 span,
.step-header h2 span {
    color: var(--green);
}


.step-header p {
    max-width: 570px;

    margin: 19px auto 0;

    color: var(--text);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   11. SELETOR DE REGIÃO
   ========================================================= */

.region-selector {
    position: relative;

    width: 100%;
    max-width: 680px;

    margin: 0 auto;
}


/* =========================================================
   12. GATILHO DO SELETOR
   ========================================================= */

.region-selector-trigger {
    position: relative;

    width: 100%;
    min-height: 92px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    color: var(--white);

    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.region-selector-trigger:hover {
    border-color:
        rgba(0, 218, 0, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(0, 218, 0, 0.045),
            rgba(255, 255, 255, 0.012)
        );
}


.region-selector.open
.region-selector-trigger {
    border-color:
        rgba(0, 218, 0, 0.35);

    box-shadow:
        0 0 0 1px
            rgba(0, 218, 0, 0.04),
        0 0 35px
            rgba(0, 218, 0, 0.045);
}


/* =========================================================
   13. CONTEÚDO DO SELETOR
   ========================================================= */

.region-trigger-content {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.region-trigger-label {
    color: var(--green);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;
}


.region-trigger-value {
    color: #eeeeee;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.2px;

    transition: color 0.3s ease;
}


.region-selector.open
.region-trigger-value {
    color: var(--white);
}


.region-selector.has-selection
.region-trigger-value {
    color: var(--green);

    font-weight: 600;
}


/* =========================================================
   14. ÍCONE DO SELETOR
   ========================================================= */

.region-trigger-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    color: #777;

    font-size: 15px;

    transition:
        transform 0.35s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.region-selector-trigger:hover
.region-trigger-icon {
    color: var(--green);

    border-color:
        rgba(0, 218, 0, 0.25);
}


.region-selector.open
.region-trigger-icon {
    transform: rotate(180deg);

    color: var(--green);

    border-color:
        rgba(0, 218, 0, 0.25);

    background:
        rgba(0, 218, 0, 0.04);
}


.region-selector.has-selection
.region-trigger-icon {
    color: var(--green);

    border-color:
        rgba(0, 218, 0, 0.25);
}


/* =========================================================
   15. MENU DE ESTADOS
   ========================================================= */

.region-selector-menu {
    position: relative;

    width: 100%;

    margin-top: 10px;

    padding: 14px;

    border:
        1px solid
        rgba(0, 218, 0, 0.18);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 14, 14, 0.98),
            rgba(7, 7, 7, 0.99)
        );

    box-shadow:
        0 25px 70px
            rgba(0, 0, 0, 0.65),
        0 0 40px
            rgba(0, 218, 0, 0.035);

    backdrop-filter: blur(18px);

    z-index: 50;

    animation:
        regionMenuOpen
        0.25s ease both;
}


.region-selector-menu[hidden] {
    display: none;
}


@keyframes regionMenuOpen {

    from {
        opacity: 0;
        transform:
            translateY(-8px)
            scale(0.985);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   16. BUSCA DE ESTADO
   ========================================================= */

.region-search {
    position: relative;

    width: 100%;

    margin-bottom: 10px;
}


.region-search-icon {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #666;

    font-size: 19px;

    pointer-events: none;
}


.region-search-input {
    width: 100%;
    height: 48px;

    padding:
        0 18px 0 46px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--white);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.region-search-input::placeholder {
    color: #5d5d5d;
}


.region-search-input:focus {
    border-color:
        rgba(0, 218, 0, 0.3);

    background:
        rgba(0, 218, 0, 0.025);

    box-shadow:
        0 0 20px
            rgba(0, 218, 0, 0.035);
}


/* =========================================================
   17. LISTA DE ESTADOS
   ========================================================= */

.region-list {
    max-height: 330px;

    overflow-y: auto;

    padding-right: 3px;
}


.region-list::-webkit-scrollbar {
    width: 4px;
}


.region-list::-webkit-scrollbar-track {
    background: transparent;
}


.region-list::-webkit-scrollbar-thumb {
    background: #252525;

    border-radius: 10px;
}


/* =========================================================
   18. OPÇÃO DE ESTADO
   ========================================================= */

.region-option {
    width: 100%;
    min-height: 49px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border:
        1px solid transparent;

    border-radius: 11px;

    background: transparent;

    color: #d4d4d4;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.8px;

    text-align: left;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.region-option span:last-child {
    color: #555;

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.region-option:hover {
    border-color:
        rgba(0, 218, 0, 0.12);

    background:
        rgba(0, 218, 0, 0.045);

    color: var(--white);

    transform: translateX(2px);
}


.region-option:hover span:last-child {
    color: var(--green);

    transform: translateX(4px);
}


/* =========================================================
   19. DISTRIBUIDORAS
   ========================================================= */

.distributors-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 13px;
}


.distributor-card {
    position: relative;

    width: 100%;
    min-height: 82px;

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        var(--card);

    color: var(--white);

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.distributor-card:hover {
    transform: translateY(-2px);

    border-color:
        var(--border-green);

    background:
        var(--card-hover);

    box-shadow:
        0 12px 35px
            rgba(0, 0, 0, 0.3);
}


.distributor-info {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.distributor-name {
    color: var(--white);

    font-size: 14px;
    font-weight: 600;
}


.distributor-location {
    color: var(--text-muted);

    font-size: 11px;
}


.distributor-arrow {
    color: #707070;

    font-size: 20px;

    transition:
        color var(--transition),
        transform var(--transition);
}


.distributor-card:hover
.distributor-arrow {
    color: var(--green);

    transform: translateX(5px);
}


/* =========================================================
   20. TELA 3 — SUA CONFIGURAÇÃO
   ========================================================= */

#step-result {
    width: 100%;
}


/* =========================================================
   21. CARD DE CONFIGURAÇÃO
   ========================================================= */

.configuration-card {
    position: relative;

    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    padding: 28px 30px 26px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 20px 60px
            rgba(0, 0, 0, 0.35);

    overflow: hidden;
}


/* brilho superior */

.configuration-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 218, 0, 0.35),
            transparent
        );
}


/* =========================================================
   22. STATUS DA CONFIGURAÇÃO
   ========================================================= */

.configuration-status {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: var(--green);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.status-indicator {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px
            rgba(0, 218, 0, 0.6);

    animation:
        configurationPulse
        2.5s ease-in-out infinite;
}


@keyframes configurationPulse {

    0%,
    100% {
        opacity: 0.7;

        box-shadow:
            0 0 10px
                rgba(0, 218, 0, 0.6);
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 15px
                rgba(0, 218, 0, 0.75);
    }

}


/* =========================================================
   23. LOCALIZAÇÃO
   ========================================================= */

.configuration-location {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.configuration-distributor {
    color: var(--white);

    font-family: "Poppins", sans-serif;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.2;
}


.configuration-state {
    color: #666;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.3;

    text-align: right;
}


/* =========================================================
   24. DIVISORES
   ========================================================= */

.configuration-divider {
    width: 100%;
    height: 1px;

    margin: 24px 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}


/* =========================================================
   25. CONDIÇÕES
   ========================================================= */

.configuration-conditions {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px 35px;
}


.condition-item {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.condition-label {
    color: #5f5f5f;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.condition-item strong {
    color: #e8e8e8;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.4;
}


/* =========================================================
   26. DESCONTO
   ========================================================= */

.configuration-discount {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    text-align: center;
}


.discount-label {
    color: #666;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.configuration-discount strong {
    margin-top: 4px;

    color: var(--green);

    font-family: "Anton", sans-serif;

    font-size: 58px;
    font-weight: 400;

    line-height: 1;

    text-shadow:
        0 0 25px
            rgba(0, 218, 0, 0.08);
}


.discount-description {
    margin-top: 7px;

    color: #777;

    font-size: 10px;
}


/* =========================================================
   27. INFORMAÇÃO DA CONFIGURAÇÃO
   ========================================================= */

.configuration-info {
    max-width: 520px;

    margin: 24px auto 0;

    color: #fefefe;

    font-size: 12px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   28. BOTÃO CONTINUAR
   ========================================================= */

.continue-button {
    position: relative;
    z-index: 1;

    width: 100%;

    min-height: 60px;

    margin-top: 25px;

    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 14px;

    background: var(--green);

    color: var(--black);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


.continue-button span {
    font-size: 18px;

    transition:
        transform var(--transition);
}


.continue-button:hover {
    transform: translateY(-2px);

    background: #12eb12;

    box-shadow:
        0 10px 35px
            rgba(0, 218, 0, 0.18);
}


.continue-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   29. BOTÃO VOLTAR
   ========================================================= */

.back-button {
    display: block;

    margin: 23px auto 0;

    padding: 8px 12px;

    background: transparent;

    color: #777;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.8px;

    transition:
        color var(--transition),
        transform var(--transition);
}


.back-button:hover {
    color: var(--white);

    transform: translateX(-3px);
}


/* =========================================================
   30. TELA 4 — APROVADO
   ========================================================= */

.approved-content {
    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    text-align: center;
}


.approved-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-bottom: 20px;

    color: var(--green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.approved-content h2 {
    margin: 0;

    color: var(--white);

    font-family: "Anton", sans-serif;

    font-size:
        clamp(54px, 6vw, 68px);

    font-weight: 400;

    line-height: 1;
}


.approved-content h3 {
    margin-top: 10px;

    color: var(--white);

    font-family: "Anton", sans-serif;

    font-size:
        clamp(30px, 3.5vw, 46px);

    font-weight: 400;

    line-height: 1.05;
}


.approved-content h3 span {
    color: var(--green);
}


.approved-content > p {
    max-width: 540px;

    margin: 20px auto 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   31. RESUMO DA APROVAÇÃO
   ========================================================= */

.approved-summary {
    width: 100%;

    margin-top: 42px;

    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border:
        1px solid
        rgba(0, 218, 0, 0.15);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 218, 0, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 20px 60px
            rgba(0, 0, 0, 0.3);
}


.approved-summary-location {
    display: flex;
    flex-direction: column;

    gap: 5px;

    text-align: left;
}


.approved-summary-location span:first-child {
    color: var(--white);

    font-size: 15px;
    font-weight: 600;
}


.approved-summary-location span:last-child {
    color: var(--text-muted);

    font-size: 11px;
}


.approved-discount {
    display: flex;
    align-items: center;

    gap: 12px;
}


.approved-discount span {
    color: #666;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


.approved-discount strong {
    color: var(--green);

    font-family: "Anton", sans-serif;

    font-size: 42px;
    font-weight: 400;

    line-height: 1;
}


.approved-discount small {
    color: #777;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 1px;
}


/* =========================================================
   32. OBSERVAÇÃO DA APROVAÇÃO
   ========================================================= */

.approved-note {
    margin-top: 16px;

    color: #555;

    font-size: 9px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   33. ESTADO INDISPONÍVEL
   ========================================================= */

.unavailable-step {
    text-align: center;
}


.unavailable-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color: #a0a0a0;

    font-size: 21px;
    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.025);
}


.unavailable-step .step-header {
    margin-bottom: 0;
}


.unavailable-step .step-header h2 {
    max-width: 700px;
}


.unavailable-step .step-header p {
    max-width: 520px;
}


/* =========================================================
   34. FOOTER
   ========================================================= */

.cadastro-footer {
    position: relative;
    z-index: 2;

    width: 100%;

    padding:
        0 40px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4px;

    text-align: center;
}


.cadastro-footer p {
    color: #777;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1px;
}


.cadastro-footer span {
    color: #444;

    font-size: 12px;

    letter-spacing: 0.3px;
}


/* =========================================================
   35. SELEÇÃO DE TEXTO
   ========================================================= */

::selection {
    color: var(--black);

    background: var(--green);
}


/* =========================================================
   36. SCROLLBAR GLOBAL
   ========================================================= */

::-webkit-scrollbar {
    width: 7px;
}


::-webkit-scrollbar-track {
    background: var(--black);
}


::-webkit-scrollbar-thumb {
    background: #222;

    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #333;
}


/* =========================================================
   37. RESPONSIVIDADE — NÃO É O MOBILE DEFINITIVO
   ========================================================= */

/*
    IMPORTANTE:

    O Mobile será desenvolvido separadamente.

    Estas regras são apenas as regras básicas
    que já existiam no projeto e NÃO devem ser
    consideradas a versão Mobile final.
*/


@media (max-width: 900px) {

    .cadastro-container {
        max-width: 760px;
    }

}


@media (max-width: 600px) {

    .cadastro-header {
        padding-left: 22px;
        padding-right: 22px;
    }


    .cadastro-container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .progress-line {
        width: 60px;
    }

}