/*Padronizando os componentes*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

   main{
    /*faz os conteudos ficarem centralizados no meio da tela*/
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
   }
   .crowd {
       /*faz o titulo ficar mais abaixo na tela*/
       margin-top: 2rem;
    }
    .crowd h1{
        /*muda o tamanho e estilo do titulo*/
        font-size: 120px;
        font-family: monospace;
    }
    
    .admin{
        display: flex;
        text-align: center;
        justify-content: right;
        margin: 2rem 2rem 0 0rem;
    }

    .admin a{
        padding: 10px;
        text-decoration: none;
        color: #333;
    }

    
    .botoes {
        /*essa div centraliza os botoes de entrar no meio da tela*/
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 9rem;
        margin-bottom: 7.5rem;
    }

    .botoes a {
        /*estiliza os botoes de entrar como aluno/academia*/
        display: block;
        width: 400px;
        height: 80px;
        line-height: 75px;
        font-size: 18px;
        font-family: sans-serif;
        text-decoration: none;
        color: #333;
        border: 2px solid #333;
        letter-spacing: 2px;
        text-align: center;
        position: relative;
        transition: all .35s;    
    }

    .bentrar1{
        /*coloca um espaco entre os botoes*/
       margin-right: 70px;
    }


    .botoes a span {
        /*faz o texto dos botoes ficarem no centro e o z-index faz ele ficar em cima da cor do fundo quando acontecer a transicao*/
        position: relative;
        z-index: 2;
        margin-top: 50px;
        size: 2rem;
    }

    .bentrar1 a:after {
        /*muda a cor do botao quando passa o mouse em cima e coloca uma transicao para preencher o botao em um tempo delimitado*/
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #f57419;
        transition: all .60s;
    }
    
    .bentrar2 a:after {
        /*muda a cor do botao quando passa o mouse em cima e coloca uma transicao para preencher o botao em um tempo delimitado*/
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: #f57419;
        transition: all .60s;
    }

    .botoes a:hover {
        /*deixa o texto no botao branco depois da transicao */
        color: #fff;
    }
    
    .botoes a:hover:after {
        /*faz a transicao ocupar todo o espaco do botao*/
        width: 100%;
    }

    /*formata o texto do e o centraliza copyright*/
#footer_copyright {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}

@media screen and (max-width: 640px) {
        h1{
            font-size: 100px;
        }
        
        .entrar{
            width: 80%;
            display: flex;
            align-items: center;
        }
        
        a{
            height: 90px;
            line-height: 30px;
            width: 250px;
        }
        
    }

    @media screen and (min-width: 641px) {
        h1{
            font-size: 120px;
        }
        .entrar{
            display: flex;
            align-content: center;
            width: 90%;
        }
    }

    @media screen and (min-width: 992px) {
        .entrar{
            width: 50%
        }
        
    }
    @media screen and (max-width: 510px) {
        h1{
            font-size: 80px;
        }
        
    }
    @media screen and (max-width: 412px) {
        h1{
            font-size: 60px;
        }
        
    }

    @media screen and (max-width: 850px) {
        .botoes {
                /*essa div centraliza os botoes de entrar no meio da tela*/
                display: block;
                margin-top: 9rem;
                margin-bottom: 7.5rem;
            }
            .bentrar1{
                margin-right: auto;
                margin-bottom: 20px;
            }
        
            .botoes a {
                /*estiliza os botoes de entrar como aluno/academia*/
                display: block;
                margin-left: auto;
                margin-right: auto;
                width: 300px;
                height: 80px;
                line-height: 75px;
                font-size: 18px;
                font-family: sans-serif;
                text-decoration: none;
                color: #333;
                border: 2px solid #333;
                letter-spacing: 2px;
                text-align: center;
                position: relative;
                transition: all .35s;    
            }
        }
            /* Definição de Cores Customizadas */
            :root {
             --crowd-orange: #FF8C00; /* Laranja de Destaque */
             --crowd-gray: #505050;   /* Cinza Escuro para Títulos */
             --text-color: #000000;   /* Preto para o Corpo do Texto */
             --text-soft: #4b5563;    /* Cinza Suave para Subtítulos */
             --bg-white: #ffffff;
             --bg-light-gray: #f3f4f6; /* Fundo de card no mockup */
             --shadow-color: rgba(0, 0, 0, 0.15);
            }
            
            /* Base Styles */
            body {
             font-family: 'Inter', sans-serif;
             background-color: var(--bg-white);
             color: var(--text-color);
             margin: 0;
             padding: 0;
             line-height: 1.6;
             scroll-behavior: smooth;
            }
            
            .container {
             max-width: 1200px;
             margin: 0 auto;
             padding: 0 1.5rem; /* Padding horizontal padrão */
            }
            
            /* Navbar */
            .header-nav {
             background-color: var(--bg-white);
             box-shadow: 0 2px 4px var(--shadow-color);
             position: sticky;
             top: 0;
             z-index: 10;
            }
            
            .nav-content {
             display: flex;
             justify-content: space-between;
             align-items: center;
             padding: 1rem 0;
            }
            
            .logo {
             font-size: 1.5rem;
             font-weight: 900;
             color: var(--crowd-gray);
            }
            
            .nav-links {
             display: none; /* Oculta por padrão (mobile-first) */
            }
            
            .nav-links a {
             color: var(--text-color);
             font-weight: 500;
             transition: color 0.3s;
             text-decoration: none;
             margin-left: 1rem;
             padding: 0.5rem 0;
            }
            
            .nav-links a:hover {
             color: var(--crowd-orange);
            }
            
            .nav-links .btn-parceria {
             background-color: var(--crowd-orange);
             color: var(--bg-white);
             padding: 0.5rem 1rem;
             border-radius: 0.5rem;
             transition: background-color 0.3s;
             margin-left: 1rem;
            }
            
            .nav-links .btn-parceria:hover {
             background-color: #e07b00; /* Laranja um pouco mais escuro */
            }
            
            /* Responsividade da Navbar (A partir de 640px) */
            @media (min-width: 640px) {
             .nav-links {
                 display: block; /* Mostra no desktop */
             }
            }
            
            /* Sections General */
            section {
             padding: 4rem 0; /* Espaçamento vertical padrão */
             border-bottom: 1px solid #e5e7eb; /* Divisor de seção suave */
             position: relative;
             overflow: hidden;
            }
            
            .section-download {
             padding: 6rem 0;
            }
            
            /* Responsividade das Seções */
            .section-content {
             display: flex;
             flex-direction: column;
             align-items: center;
             justify-content: space-between;
             text-align: center;
            }
            
            .text-content {
             margin-bottom: 2.5rem;
            }
            
            /* Layout Desktop (A partir de 1024px) */
            @media (min-width: 1024px) {
             section {
                 padding: 6rem 0;
             }
             .section-content {
                 flex-direction: row;
                 text-align: left;
             }
             .text-content, .image-content {
                 width: 50%;
                 margin-bottom: 0;
             }
             .text-content {
                 padding-right: 3rem;
             }
             #parceiro .section-content {
                 flex-direction: row-reverse;
             }
             #parceiro .text-content {
                  padding-right: 0;
                  padding-left: 3rem;
             }
            }
            
            /* Typography and Headings */
            h1 {
             font-size: 2.3rem;
             font-weight: 800;
             color: var(--crowd-gray);
            }
            @media (max-width: 640px) {
             h1 {
                 font-size: 3rem;
             }
            }
            
            h2, .title-orange {
             font-size: 2.5rem;
             font-weight: 800;
             color: var(--crowd-orange);
            }
            @media (min-width: 640px) {
             h2, .title-orange {
                 font-size: 3rem;
             }
            }
            
            .subtitle {
             font-size: 1.125rem;
             color: var(--text-soft);
             max-width: 600px;
             margin: 1rem auto 1.5rem;
            }
            @media (min-width: 1024px) {
             .subtitle {
                 font-size: 1.25rem;
                 margin-left: 0;
                 margin-right: 0;
             }
            }
            
            /* Call to Action (Download Section) */
            .cta-area {
             margin-top: 2rem;
            }
            .cta-heading {
             font-size: 3rem;
             font-weight: 900;
             letter-spacing: 0.05em;
             color: var(--crowd-orange);
            }
            
            .btn-download {
             display: inline-block;
             transition: transform 0.3s, box-shadow 0.3s;
             margin-top: 1rem;
            }
            .btn-download img {
             width: 12rem;
             height: auto;
             border-radius: 0.5rem;
             box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }
            
            .btn-hover:hover {
             transform: translateY(-2px);
             box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -2px var(--shadow-color);
            }
            
            /* Mobile Mockup Styling */
            .mobile-mockup-wrapper {
             display: flex;
             justify-content: center;
             padding: 2rem;
            }
            
            .mobile-mockup {
             position: relative;
             width: 16rem;
             height: 32.5rem;
             background-color: var(--bg-white);
             border-radius: 2.5rem;
             box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
             padding: 0.75rem;
             border: 8px solid var(--crowd-gray);
            }
            
            .notch {
             position: absolute;
             top: 0;
             left: 50%;
             transform: translateX(-50%);
             height: 1rem;
             width: 5rem;
             background-color: var(--crowd-gray);
             border-bottom-left-radius: 0.75rem;
             border-bottom-right-radius: 0.75rem;
            }
            
            .app-content {
             margin-top: 0.25rem;
             height: 100%;
             overflow: hidden;
             display: flex;
             flex-direction: column;
             gap: 0.75rem;
             padding-bottom: 3.5rem; 
            }
            
            .text-center-time {
             text-align: center;
             font-size: 0.75rem;
             color: #6b7280;
            }
            
            .app-card {
             background-color: var(--bg-light-gray);
             padding: 0.5rem;
             border-radius: 0.5rem;
            }
            
            .app-card h3 {
             font-weight: bold;
             font-size: 0.875rem;
             color: var(--crowd-orange);
            }
            
            .schedule-item {
             display: flex;
             justify-content: space-between;
             font-size: 0.875rem;
             margin-top: 0.25rem;
             color: var(--text-soft);
            }
            .schedule-item span:last-child {
             font-weight: 600;
             color: var(--text-color);
            }
            
            .chart-title {
             font-size: 0.75rem;
             font-weight: 600;
             margin-bottom: 0.5rem;
             color: var(--text-color);
            }
            
            .bar-chart {
             display: flex;
             justify-content: space-around;
             align-items: flex-end;
             height: 8rem;
            }
            
            .bar {
             width: 1rem;
             background-color: var(--crowd-orange);
             border-top-left-radius: 0.125rem;
             border-top-right-radius: 0.125rem;
            }
            
            .bar:nth-child(2), .bar:nth-child(4) {
             background-color: #9ca3af; /* Cinza para barras inativas */
            }
            
            /* Alturas das barras */
            .bar-h-50 { height: 50%; }
            .bar-h-75 { height: 75%; }
            .bar-h-100 { height: 100%; }
            .bar-h-33 { height: 33.3%; }
            .bar-h-66 { height: 66.6%; }
            
            
            .app-nav {
             display: flex;
             justify-content: space-around;
             position: absolute;
             bottom: 0;
             left: 0;
             width: 100%;
             padding: 0.75rem 0;
             border-top: 1px solid #e5e7eb;
             background-color: var(--bg-white);
             border-bottom-left-radius: 2.5rem;
             border-bottom-right-radius: 2.5rem;
            }
            
            .app-nav svg {
             width: 1.5rem;
             height: 1.5rem;
            }
            
            .app-nav .active-icon {
             color: var(--crowd-orange);
            }
            
            .app-nav .inactive-icon {
             color: #6b7280;
            }
            
            /* Section 2: Benefits */
            #beneficios{
                background-color: var(--crowd-gray);
            }
            .benefit-list {
             list-style: none;
             padding: 0;
             margin: 0;
             gap: 1rem;
             display: flex;
             flex-direction: column;
            }
            
            .benefit-list li {
             display: flex;
             align-items: flex-start;
             font-size: 1.125rem;
             color: var(--bg-light-gray);
            }
            
            .benefit-list svg {
             width: 1.5rem;
             height: 1.5rem;
             margin-right: 0.75rem;
             margin-top: 0.25rem;
             flex-shrink: 0;
             color: var(--crowd-orange);
            }
            
            .title-underline {
             border-bottom: 4px solid var(--crowd-orange);
             padding-bottom: 0.5rem;
             display: inline-block;
             margin-bottom: 2rem;
             color: var(--bg-white);
            }
            
            /* Crowd Logo SVG (Section 2) */
            .crowd-logo-wrapper {
             position: relative;
             padding: 2rem;
             display: inline-block;
            }
            .crowd-logo-svg {
             width: 18.75rem;
             height: 18.75rem;
             fill: none;
             color: #d1d5db; /* Cinza claro para o fundo do svg */
            }
            
            .crowd-logo-svg .fingerprint-base {
             fill: currentColor;
             opacity: 0.5;
            }
            
            .crowd-logo-svg .fingerprint-lines {
             stroke: currentColor;
             stroke-width: 2px;
             stroke-linecap: round;
             stroke-linejoin: round;
            }
            
            .crowd-logo-svg .checkmark {
             stroke: var(--crowd-orange);
             stroke-width: 4px;
             stroke-linecap: round;
             stroke-linejoin: round;
            }
            
            /* Section 3: Partner */
            .partner-content-group {
             display: flex;
             flex-direction: column;
             align-items: center;
             gap: 1rem;
             margin-top: 2rem;
            }
            @media (min-width: 640px) {
             .partner-content-group {
                 flex-direction: row;
                 gap: 2rem;
             }
            }
            @media (min-width: 1024px) {
             .partner-content-group {
                 justify-content: flex-start;
             }
            }
            
            .partner-info {
             font-size: 1.125rem;
             color: var(--text-soft);
            }
            
            .btn-saiba-mais {
             background-color: var(--crowd-orange);
             color: var(--bg-white);
             font-weight: bold;
             padding: 0.75rem 2rem;
             border-radius: 0.5rem;
             transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
             font-size: 1.125rem;
             box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
             text-decoration: none;
             white-space: nowrap;
            }
            .btn-saiba-mais:hover {
             background-color: #e07b00;
             transform: translateY(-2px);
             box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -2px var(--shadow-color);
            }
            /* Footer */
            .footer {
             background-color: #1f2937;
             color: var(--bg-white);
             text-align: center;
             padding: 1rem 0;
             font-size: 0.875rem;
            }
            