@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color:#137d9a;
    --main-color-clearer:#379cb8;
    --main-color-little-opacity:#137d9a37;
    --main-color-little-opacity02:#137d9a23;
    --main-color-little-opacity03:#137d9a37;
    --bg-color-01: #111111;
    --bg-color-02: #0B0B0B;
    --text-color-1:#ffffff;
    --text-color-2:#d0d0d0;
    --text-color-3:#9c9b9b;
    --text-color-4:#afafafef;
    --text-color-5:#323232;
    --text-color-6:#afafafef;
    --text-color-7:#8c8b8b;
    --text-color-8:#000000;
    --bg-color-header:#060606;
    --bg-color-03:#afafaf24;
    --bg-color-04:#8c8b8b;
    --bg-input:#92919124;
    --border-header:#2c2e32;
    --border-news: #cccccc;

  --success-color: #10b981;
  --error-color: #ef4444;   
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

html{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
}

body{
    background-color: var(--bg-color-01);
    color: var(--text-color-1);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-color-01);
}

body::-webkit-scrollbar-thumb {
    background: var(--text-color-4);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

/* ===== HEADER MOBILE FIRST ===== */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    padding: 0 10px 0 10px;
    background-color: var(--bg-color-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-header);
}

.logo{
    margin-right: auto;
}

.logo img{
    width: 140px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.nav{
    display: none;
}

.nav .cadastro {
    background-color: transparent;
    color: var(--text-color-1);
}

.nav-desktop{
    display: none;
}

.img-logo{
    display: none;
}

.menu-mobile{
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar1, .bar2, .bar3{
    width: 26px;
    height: 3px;
    background-color: var(--text-color-1);
    margin: 5px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.change .bar1{
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2{
    opacity: 0;
}

.change .bar3{
    transform: translate(0, -8px) rotate(45deg);
}

/* ===== SIDEBAR MODERNO ===== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.nav-responsive {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 420px;
    height: 100vh;
    background-color: #2d3748;
    border-right: none;
    padding: 0;
    transform: translateX(0);
    transition: left 0.4s ease-in-out;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-responsive.show {
    left: 0;
}

.sidebar-content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--main-color) 0%, #66beea 100%);
    padding: 50px 25px 35px;
    text-align: center;
    position: relative;
    border-radius: 0;
}

.company-logo {
    width: 75%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.company-logo img {
    width: 95%;
    height: auto;
    object-fit: contain;
}

.company-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    margin-bottom: 15%;
}

.sidebar-main {
    background-color: var(--bg-color-01);
    flex: 1;
    padding: 25px 20px 30px;
}

.comece-container {
    background: #5d5c5c24;
    padding: 25px 20px;
    margin: -25px -20px 30px -20px; 
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comece {
    margin-bottom: 0;
}

.comece p {
    font-size: 13px;
    color: var(--text-color-1);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.comece a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: var(--main-color);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 125, 154, 0.3);
}

.comece a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 125, 154, 0.5);
}

.comece a i {
    font-size: 20px;
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    width: 100%;
    background-color: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    cursor: pointer;
    border: none;
}

.nav-container:hover {
    background-color: var(--text-color-2);
}

.nav-container:active {
    transform: scale(0.98);
}

.icon-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.icon-nav i {
    font-size: 20px;
    color: var(--text-color-5);
}

.nav-texto {
    flex: 1;
}

.nav-texto p {
    color: var(--text-color-1);
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0;
}

.arrow-sidebar i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.nav-container:hover .arrow-sidebar i {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(3px);
}

.nav-responsive a {
    text-decoration: none;
    color: inherit;
}

.divisor-nav-up,
.divisor-nav-down {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.espaco{
    margin-top: 30px;
}

.redes-sociais-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.social-icon i {
    font-size: 24px;
    color: #ffffff;
}

.nav-responsive::-webkit-scrollbar {
    width: 6px;
}

.nav-responsive::-webkit-scrollbar-track {
    background: transparent;
}

.nav-responsive::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.nav-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== CADASTRO SECTION - MOBILE FIRST ===== */
.cadastro{
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color-02);
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 20px 40px;
}

.cadastro::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/6197033.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1.5px);
    z-index: -1;
}

.cadastro-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acesso{
    width: 100%;
    background-color: var(--bg-color-01);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 25px;
}

.acesso h3{
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    color: var(--text-color-1);
    margin-bottom: 10px;
}

.novidades{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.opcoes{
    display: flex;
    gap: 15px;
    align-items: center;
}

.novidades p{
    text-align: center;
    font-size: 14px;
    color: var(--text-color-2);
}

.novidades label{
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
    color: var(--text-color-1);
}

.novidades input[type="radio"]{
    accent-color: var(--main-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.acesso input[type="text"],
.acesso input[type="email"],
.acesso input[type="tel"],
.acesso input[type="password"]{
    width: 100%;
    height: 50px;
    font-size: 14px;
    color: var(--text-color-1);
    padding: 15px;
    background-color: var(--bg-input);
    border-radius: 8px;
    border: none;
    border-bottom: 2px solid var(--main-color);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.acesso input::placeholder{
    color: var(--text-color-6);
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.acesso input:focus {
    border-bottom: 3px solid var(--main-color);
    background-color: var(--main-color-little-opacity02);
}

.acesso input:focus::placeholder,
.acesso input:not(:placeholder-shown)::placeholder{
    transform: translateY(-8px);
    font-size: 12px;
    color: var(--main-color);
}

/* Wrapper para inputs com ícone de olho */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color-4);
    transition: color 0.3s ease;
}

.eye-icon:hover {
    color: var(--main-color);
}

.btn-1{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 10px;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    background-color: var(--main-color);
    color: var(--text-color-1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    border: none;
}

.btn-1:active{
    transform: scale(0.98);
}

.btn-2{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.btn-2 p, 
.btn-2 a{
    margin: 0;
    line-height: 1.5;
}

.btn-2 p {
    color: var(--text-color-2);
}

.btn-2 a{
    color: var(--main-color);
    transition: text-decoration 0.3s ease;
}

.btn-2 a:hover{
    text-decoration: underline;
}

/* ===== FOOTER - MOBILE FIRST ===== */
footer{
    width: 100%;
    background-color: var(--bg-color-header);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
}

.footer-container{
    width: 100%;
    margin-bottom: 30px;
}

.sobre-footer{
    width: 100%;
}

.logo-footer img{
    width: 180px;
    margin-bottom: 15px;
    margin-left: -8px;
    transition: transform 0.3s ease-in-out;
}

.logo-footer img:hover{
    transform: scale(1.1);
}

.sobre-footer p{
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color-2);
    margin-bottom: 20px;
}

.redes-sociais-footer{
    display: flex;
    gap: 12px;
}

.redes-sociais-footer img{
    width: 14px;
    height: auto;
    transition: transform 0.3s ease;
}

.redes-sociais-footer img:active{
    transform: translateY(-5px);
}

.footer-container-2{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-footer, .plataforma, .suporte, .contato{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-footer h3, .plataforma h3, .suporte h3, .contato h3{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.nav-footer a, .plataforma a, .suporte a{
    color: var(--text-color-3);
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-footer a:hover, .plataforma a:hover, .suporte a:hover{
    color: var(--main-color);
}

.contato .info{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.contato i{
    font-size: 20px;
    color: var(--main-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.contato p, .contato a{
    color: var(--text-color-3);
    font-size: 13px;
    line-height: 1.5;
}

.contato a:hover{
    text-decoration: underline;
}

.footer-3{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: 20px;
    text-align: center;
}

.footer-3 p{
    font-size: 12px;
    color: var(--text-color-3);
    line-height: 1.5;
}

/* ===== RESPONSIVO 360px+ ===== */
@media screen and (min-width: 360px) {
    .footer-container-2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
    
    .nav-footer {
        order: 1;
    }
    
    .plataforma {
        order: 2;
    }
    
    .suporte {
        order: 3;
    }
    
    .contato {
        order: 4;
    }
}

/* ===== RESPONSIVO 480px+ ===== */
@media screen and (min-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .cadastro-container {
        max-width: 450px;
    }
    
    .acesso {
        padding: 35px 30px;
    }
    
    .acesso h3 {
        font-size: 30px;
    }
}

/* ===== RESPONSIVO 600px+ ===== */
@media screen and (min-width: 600px) {
    .cadastro {
        padding: 120px 40px 60px;
    }
    
    .cadastro-container {
        max-width: 500px;
    }
    
    .acesso {
        padding: 40px 35px;
        gap: 18px;
    }
    
    .acesso h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .acesso input[type="text"],
    .acesso input[type="email"],
    .acesso input[type="tel"],
    .acesso input[type="password"]{
        height: 52px;
        font-size: 15px;
    }
    
    .btn-1 {
        height: 52px;
        font-size: 17px;
    }
    
    .btn-2 {
        font-size: 15px;
    }
    
    .footer-container-2{
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    
    .nav-footer, .plataforma, .suporte, .contato{
        flex: 1;
    }
    
    .contato {
        grid-column: auto;
    }
}

/* ===== RESPONSIVO 700px+ ===== */
@media screen and (min-width: 700px) {
    html {
        font-size: 16px;
    }
    
    header {
        height: 70px;
        padding: 0 1.5%;
    }
    
    .logo img {
        width: 160px;
    }
    
    .cadastro {
        padding: 140px 40px 70px;
    }
    
    footer{
        padding: 50px 40px 30px;
    }
    
    .footer-container{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .logo-footer img{
        width: 200px;
    }
    
    .footer-container-2{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .footer-container-2 > div{
        flex: 1;
        min-width: 0;
    }
}

/* ===== RESPONSIVO 1024px+ (DESKTOP) ===== */
@media screen and (min-width: 1024px) {
    .logo img:hover{
        transform: scale(1.1);
    }
    
    .nav{
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .nav a{
        position: relative;
        font-size: 16px;
        color: var(--text-color-1);
        padding: 5px 0;
        transition: color 0.4s;
    }
    
    .nav a:not(.img-logo a):hover{
        color: var(--main-color);
    }
    
    .nav a:not(.img-logo a)::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2.5px;
        background-color: var(--main-color);
        transition: width 0.4s ease-in-out;
    }
    
    .nav a:not(.img-logo a):hover::after{
        width: 100%;
    }
    
    .img-logo{
        display: block;
    }
    
    .img-logo a i{
        font-size: 28px;
    }
    
    .nav .login,
    .nav .cadastro {
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    .nav .cadastro {
        color: var(--text-color-1);
    }
    
    .nav-desktop{
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 25px;
    }
    
    .nav-desktop a{
        position: relative;
        font-size: 16px;
        color: var(--text-color-1);
        padding: 5px 0;
        transition: color 0.4s;
    }
    
    .nav-desktop a:hover{
        color: var(--main-color);
    }
    
    .nav-desktop a::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2.5px;
        background-color: var(--main-color);
        transform: scaleX(0);
        transition: transform 0.4s ease-in-out;
    }
    
    .nav-desktop a:hover::after{
        transform: scaleX(1);
    }
    
    .menu-mobile {
        display: none;
    }
    
    .cadastro {
        padding: 150px 60px 80px;
    }
    
    .btn-1:hover{
        background-color: var(--main-color-clearer);
        transform: scale(1.05);
    }
    
    .redes-sociais-footer img:hover{
        transform: translateY(-5px);
    }
    
    footer{
        padding: 60px 60px 40px;
    }
    
    .footer-container{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .sobre-footer{
        width: 35%;
    }
    
    .logo-footer img{
        width: 220px;
        margin-left: -12px;
    }
    
    .redes-sociais-footer{
        gap: 10px;
    }
    
    .redes-sociais-footer img{
        width: 13px;
    }
    
    .footer-container-2{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 35px;
        flex-wrap: nowrap;
    }
    
    .footer-container-2 > div{
        flex: 1;
        min-width: 0;
    }
    
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 15px;
    }
}

/* ===== RESPONSIVO 1200px+ ===== */
@media screen and (min-width: 1200px) {
    header{
        padding: 0 1.5%;
    }
    
    .logo img {
        width: 170px;
    }
    
    .nav{
        gap: 18px;
    }
    
    .nav a{
        font-size: 17px;
    }
    
    .nav-desktop{
        gap: 30px;
    }
    
    .nav-desktop a{
        font-size: 17px;
    }
    
    .cadastro {
        padding: 160px 80px 100px;
    }
    
    .cadastro-container {
        max-width: 550px;
    }
    
    .acesso {
        padding: 45px 40px;
        gap: 20px;
    }
    
    .acesso h3 {
        font-size: 35px;
        margin-bottom: 20px;
    }
    
    .acesso input[type="text"],
    .acesso input[type="email"],
    .acesso input[type="tel"],
    .acesso input[type="password"]{
        height: 55px;
        font-size: 16px;
    }
    
    .btn-1 {
        height: 55px;
        font-size: 18px;
        margin: 20px auto 15px;
    }
    
    .btn-2 {
        font-size: 16px;
    }
    
    footer{
        padding: 70px 80px 50px;
    }
    
    .footer-container{
        gap: 40px;
    }
    
    .sobre-footer{
        width: 30%;
    }
    
    .logo-footer img{
        width: 240px;
        margin-left: -12px;
    }
    
    .redes-sociais-footer img{
        width: 15px;
    }
    
    .sobre-footer p{
        font-size: 14px;
    }
    
    .footer-container-2{
        width: 100%;
        gap: 40px;
    }
    
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 20px;
    }
    
    .nav-footer h3, .plataforma h3, .suporte h3, .contato h3{
        font-size: 18px;
    }
    
    .nav-footer a, .plataforma a, .suporte a{
        font-size: 15px;
    }
    
    .contato p, .contato a{
        font-size: 14px;
    }
    
    .footer-3 p{
        font-size: 13px;
    }
}

/* ===== RESPONSIVO 1440px+ ===== */
@media screen and (min-width: 1440px) {
    header{
        padding: 0 1.5%;
    }
    
    .logo img {
        width: 180px;
    }
    
    .cadastro {
        padding: 170px 100px 120px;
    }
    
    .cadastro-container {
        max-width: 600px;
    }
    
    .acesso {
        padding: 50px 45px;
    }
    
    footer{
        padding: 80px 100px 60px;
    }
    
    .footer-container{
        gap: 50px;
    }
    
    .sobre-footer{
        width: 28%;
    }
    
    .redes-sociais-footer img{
        width: 16px;
    }
    
    .footer-container-2{
        width: 100%;
        gap: 45px;
    }
    
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 25px;
    }
}

/* ===== REQUISITOS DE SENHA - PROPORÇÃO IGUAL AO PRINT ===== */
.senha-requisitos {
    background-color: var(--main-color-little-opacity02);
    border-left: 3px solid var(--main-color);
    padding: 16px;
    border-radius: 10px;
    margin-top: 8px;
}

.titulo-requisitos {
    font-size: 15px; /* levemente maior */
    color: var(--text-color-1);
    font-weight: 600;
    margin-bottom: 12px;
}

.senha-requisitos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.senha-requisitos li {
    font-size: 14px; /* aumentei para aproximar da proporção visual do print */
    color: var(--text-color-3);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* Ícone mantém o mesmo tamanho */
.senha-requisitos li i {
    font-size: 16px;
    color: var(--error-color);
    transition: color 0.3s ease;
}

/* Quando o requisito é atendido */
.senha-requisitos li.valid {
    color: var(--success-color);
}

.senha-requisitos li.valid i {
    color: var(--success-color);
}

/* Troca o ícone ❌ por ✔️ */
.senha-requisitos li.valid i.bx-x::before {
    content: "\eb3f"; /* código do ícone bx-check */
}
