@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* --- WHITE THEME --- */
    /* Cores Base */
    --white-theme-white: #ffffff;
    --white-theme-black: #000000;
    --white-theme-primary-green: #06673a;

    /* Cores de Texto */
    --white-theme-text-primary: #020817;
    --white-theme-text-titles: #363636;
    --white-theme-text-logo: #333333;
    --white-theme-text-body: #555555;
    --white-theme-hover-text-color: #555555;

    /* Backgrounds e UI */
    --white-theme-bg-primary: #ffffff;
    --white-theme-bg-navbar: #FFFFFFE6;
    --white-theme-bg-footer: #f5f5f5;
    --white-theme-bg-card: #ececf5;
    --white-theme-bg-dark-ui: #474747;
    --white-theme-bg-slider: #E6E6E680;
    --white-theme-bg-number: #e2e2e2;
    --white-theme-divider: #d4d4d4;

    /* Estados */
    --white-theme-hover-bg-color: #e0e0e0;
    --white-theme-bg-light-accent: #f0f0f0;

    /* --- BLACK THEME (Novas Cores) --- */
    --black-theme-bg-navbar: #030711e6;    /* Fundo do menu fixo */
    --black-theme-text-primary: #ffffff;   /* Cor das letras */
    --black-theme-bg-primary: #111827;     /* Fundo das sections/body */
}

@-webkit-keyframes fadeInTop{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-o-keyframes fadeInTop{
    0%{
        opacity: 0;
        -o-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@-moz-keyframes fadeInTop{
    0%{
        opacity: 0;
        -moz-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes fadeInTop{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -webkit-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -o-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -moz-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

*{
    border: 0;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

body{
    background-color: var(--white-theme-bg-primary);
    font-family: "Inter", sans-serif;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

#navbar{
    width: 100vw;
    height: 15vh;
    top: 0;
    position: fixed;
    padding: 16px 24px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white-theme-bg-navbar);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: fadeInTop 0.5s both;
    -o-animation: fadeInTop 0.5s both;
    -moz-animation: fadeInTop 0.5s both;
    animation: fadeInTop 0.5s both;
}

.login-btn, .singup-btn{
    text-decoration: none;
    color: var(--white-theme-text-primary);
    padding: 8px 16px;
    border-radius: 10px;

}

.user-area a:hover, .language:hover, .theme:hover{
    background-color: var(--white-theme-hover-bg-color);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.options a:hover{
    color: var(--white-theme-hover-text-color);
    transition: color 0.3s ease;
}

.logo{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    /* gap: 12px; */
    font-size: 15px;
    font-weight: bold;
    color: var(--white-theme-text-logo);
    text-decoration: none;
}

.logo img{
    height: 70px;
    width: 100px;
    /* margin-right: 8px; */
}

.logo h1{
    font-size: 20px;
}

.options{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    text-decoration: none;
    
}

.options a{
    text-decoration: none;
    color: var(--white-theme-text-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    margin: 0 0 0 32px;

}

.user-area{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 8px 12px;
    gap: 32px;
}

.language{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 10px;

}

.language p{
    font-size: 16px;
    font-weight: 500;
    color: var(--white-theme-text-primary);
    margin-top: 15px;
}

.theme{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 15px 15px;
}

.user-area a{
    text-decoration: none;
    margin: 0 0 0 32px;
    color: var(--white-theme-text-primary);
    font-weight: 500;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px;
}

.user-area a:hover, .login-btn:hover, .singup-btn:hover{
    background-color: var(--white-theme-primary-green);
    color: var(--white-theme-bg-light-accent);
    transition: background-color 0.3s ease;
}

.hero{
    width: 100vw;
    height: 75vh;
    margin-top: 15vh;
        background:
        linear-gradient(
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)
        ),
        url("../img/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    color: var(--white-theme-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content{
    margin-right: 40%;
    width: 40%;
    -webkit-animation: fadeInLeft 0.8s both;
    -o-animation: fadeInLeft 0.8s both;
    -moz-animation: fadeInLeft 0.8s both;
    animation: fadeInLeft 0.8s both;
}

.hero-content h2{
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.hero-content p{
    font-size: 24px;
    margin-bottom: 32px;
}

.hero-content a{
    background-color: var(--white-theme-white);
    color: var(--white-theme-black);
    border: none;
    padding: 15px 20px;
}

.hero-content a:hover{
    background-color: var(--white-theme-bg-light-accent);
    transition: background-color 0.3s ease;
    color: var(--white-theme-black);
}

.player-analysis{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.player-analysis-title, .panel-container-title{
    text-align: center;
    margin: 80px 0;
    flex-wrap: wrap;
}

.player-analysis-title h2, .panel-container-title h2, .slider-container-title h2, .funcionalities-container-title h2, .convocation-container-title h2{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--white-theme-text-titles);
}

.player-analysis-title p, .panel-container-title p, .slider-container-title p, .funcionalities-container-title p,.convocation-container-title p{
    font-size: 18px;
    color: var(--white-theme-text-body);
    max-width: 600px;
    margin: 0 auto;
}

.player-analysis-div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 20px 80px;
}

.player-analysis-desc{
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* max-width: 400px; */
}

.player-analysis-desc-topics{
    display: flex;
    flex-direction: column;
}

.player-analysis-desc-topics .topic{
    display: flex;
    /* flex-direction: row; */
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
}

.player-analysis-desc-topics .topic svg{
    width: 24px;
    height: 24px;
}

.player-analysis-desc-topics .topic p{
    margin-top: 11px;
}

.player-analysis-desc a{
    max-width: 200px;
    background-color: var(--white-theme-bg-light-accent);
    color: var(--white-theme-black);
    border: none;
    padding: 15px 20px;
}

.player-analysis-desc a:hover{
    background-color: var(--white-theme-primary-green);
    color: var(--white-theme-bg-light-accent);
    transition: background-color 0.3s ease;   
}

.panel-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.panel-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60vw;
    max-width: 70vw;
    border-radius: 10px;

    padding: 0 0 40px 0;

    margin-bottom: 40px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.panel-card-header{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    padding: 40px 40px;
    background-color: var(--white-theme-bg-dark-ui);
    min-width: 100%;
    color: var(--white-theme-white);
    border-radius: 10px 10px 0 0;
}

.panel-card-statistics{
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.statistic{
    background-color: var(--white-theme-bg-card);
    min-width: 20%;
    padding: 20px;
    border-radius: 10px;
}

.statistic:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.panel-card-footer{
    min-width: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-card-footer-container{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 20px 0 20px;
    background-color: var(--white-theme-bg-card);
    width: 87%;
    border-radius: 10px;
}

.panel-card-footer-container h2{
    font-size: 16px;
}

.footer-topic{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-topic .number{
    padding: 5px;
    background-color: var(--white-theme-bg-number);
    border-radius: 20%;
}

.footer-topic p{
    margin-top: 5px;
}

.panel-card-footer-container:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.slider-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--white-theme-bg-slider);
    padding: 50px 0 100px 0;
}

.slider-container-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.slide{
    max-width: 50vw;
    height: 25vh;
    padding: 25px;
    background-color: var(--white-theme-white);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: fadeInLeft 0.5s both;
    -o-animation: fadeInLeft 0.5s both;
    -moz-animation: fadeInLeft 0.5s both;
    animation: fadeInLeft 0.5s both;
}

.radio{
    display: none;
}

.hidden{
    display: none;
}

.slide-header{
    display: flex;
    gap: 20px;
}

.slide-header-icon{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--white-theme-bg-dark-ui);
    color: var(--white-theme-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-header-icon h1{
    font-size: 13pt;
    text-align: center;
    margin-top: 3px;
}

.comment-infos h2{
    font-size: 13pt;
    color: var(--white-theme-text-primary);
}

.slide-comment{
    font-size: 12pt;
    color: var(--white-theme-text-titles);
    margin-top: 20px;
    font-style: italic;
    font-weight: 500;
}

.manual-navigation{
    position: absolute;
    width: 50vw;
    margin-top: 400px;
    display: flex;
    justify-content: center;

}

.manual-btn{
    border: solid var(--white-theme-black) 2px;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child){
    margin-right: 15px;
}

.manual-btn:hover{
    background-color: var(--white-theme-black);
    transition: 0.3s;
}

.funcionalities-container{
    /* margin-top: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

.funcionalities-container-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.funcionalities-box{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    gap: 10px;
    padding: 30px;
    flex-wrap: wrap;

}

.funcionality-card{
    width: 20vw;
    height: 30vh;
    background-color: var(--white-theme-bg-card);
    padding: 20px;
    border-radius: 10px;
    gap: 10px;
}

.funcionality-card:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}


.funcionality-card h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.card-icon{
    background-color: var(--white-theme-bg-number);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}


.convocation-container{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    /* gap: 25px; */
    height: 40vh;
}

.convocation-container-title{
    text-align: center;
    /* margin: 40px 0 20px 0; */
    flex-wrap: wrap;
    background-color: var(--white-theme-bg-dark-ui);
    /* padding: 30px 20px; */
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.convocation-container-title h2, .convocation-container-title p{
    color: var(--white-theme-white);
}

.convocation-container a{
    background-color: var(--white-theme-white);
    color: var(--white-theme-black);
    border: none;
    padding: 15px 20px;
    /* margin-top: 10px; */
}

.convocation-container a:hover{
    background-color: var(--white-theme-primary-green);
    transition: background-color 0.3s ease;
    color: var(--white-theme-white);
}

.pricing-container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-theme-bg-primary); /* Já preparado para tema */
}

.pricing-title {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white-theme-text-titles);
}

.pricing-title p {
    font-size: 18px;
    color: var(--white-theme-text-body);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Cards com mesma altura */
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.pricing-card {
    background-color: var(--white-theme-bg-card); /* Fundo do card */
    padding: 40px;
    border-radius: 15px;
    width: 30%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-card.highlight-card {
    border: 2px solid var(--white-theme-primary-green);
    position: relative;
}

.card-header-price {
    text-align: center;
    margin-bottom: 30px;
}

.card-header-price h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--white-theme-text-titles);
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--white-theme-text-primary);
}

.period {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-theme-text-body);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center; /* Alinha ícone e texto */
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white-theme-text-body);
    font-size: 15px;
}

.features-list li svg {
    color: var(--white-theme-primary-green);
    min-width: 16px;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--white-theme-primary-green);
    color: var(--white-theme-primary-green);
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: var(--white-theme-primary-green);
    color: #fff !important; /* Força branco no hover */
}

/* Botão do card destacado (Individual) */
.btn-card.primary {
    background-color: var(--white-theme-primary-green);
    color: #fff;
}

.btn-card.primary:hover {
    background-color: #044d2b; /* Verde mais escuro */
    border-color: #044d2b;
}


footer{
    width: 100vw;
    background-color: var(--white-theme-bg-footer);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 80px 0 30px 0;
    gap: 20px;
}

.footer-header-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav-box{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 20vw;
    height: 25vh;
}

.nav-box-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-box-title img{
    height: 50px;
    width: 50px;
}

.footer-nav-box h2{
    font-size: 20px;
    font-weight: bold;
    color: var(--white-theme-text-titles);
}

.footer-nav-box a{
    text-decoration: none;
    color: var(--white-theme-text-body);
    font-size: 16px;
}

.footer-nav-box a:hover{
    color: var(--white-theme-black);
    transition: color 0.3s ease;
}

.divider{
    content: "";
    width: 80%;
    height: 1px;
    background-color: var(--white-theme-divider);
}

.footer-baseboard{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.footer-baseboard p{
    color: var(--white-theme-text-body);
    font-size: 14px;
}


.footer-icons{
    display: flex;
    gap: 15px;
}

.footer-icons svg{
    color: var(--white-theme-text-body);
    cursor: pointer;
}

.footer-icons svg:hover{
    color: var(--white-theme-black);
    transition: color 0.3s ease;
}

/* ==========================================================================
   RESPONSIVIDADE GERAL
   ========================================================================== */


img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .pricing-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 400px; /* Limite para não ficar gigante no celular */
    }
}


@media (max-width: 1200px) {
    
    .player-analysis-title h2, .panel-container-title h2, .slider-container-title h2, 
    .funcionalities-container-title h2, .convocation-container-title h2 {
        font-size: 30px;
    }

    .player-analysis-div {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .player-analysis-desc {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .player-analysis-grafic img {
        width: 60vw;
        max-width: 500px;
    }

    .funcionalities-box {
        flex-wrap: wrap;
        gap: 20px;
    }

    .funcionality-card {
        width: 45%;
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 992px) {

    .options {
        display: none; 
    }

    #navbar {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .logo img { height: 70px; width: 100px; }
    .logo h1 { font-size: 18px; }

    .hero-content {
        margin-right: 0;
        width: 80%;
        text-align: center;
        padding: 30px;
        border-radius: 15px;
    }

    .footer-header-container {
        justify-content: center;
    }
    .footer-nav-box {
        width: 40%;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .user-area {
        gap: 10px;
    }
    .user-area a {
        margin: 0;
        padding: 8px;
        font-size: 14px;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 50px 0;
    }

    .hero-content {
        width: 90%;
    }
    
    .hero-content h2 { font-size: 28px; }

    .panel-card-container {
        width: 95vw;
    }

    .panel-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .panel-card-statistics {
        flex-direction: column;
        padding: 20px;
    }

    .statistic {
        width: 100%;
        margin-bottom: 15px;
    }

    .slider-container {
        height: auto;
        padding-bottom: 50px;
    }

    .slide {
        max-width: 90vw; 
        width: 90vw;
        height: auto;
        min-height: 300px;
        margin: 0 auto;
        
        
        position: relative; 
    }

    .slide.hidden {
        display: none !important;
    }

    .manual-navigation {
        position: static;
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .funcionality-card {
        width: 100%;
        margin-bottom: 15px;
        height: auto;
    }

    .footer-nav-box {
        width: 100%;
    }
    .footer-baseboard {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}