    @charset "UTF-8";
    @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&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    main {

        height: 100vh;
        overflow-y: auto;
        }
    
    .grid-container{
        display: grid;
        height: 100vh;
        grid-template-areas:
        "header header header"
        "article article article"
        "section section section"
        ;
        grid-template-rows: 150px 600px auto;
        grid-template-columns: 1fr;
        
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 150px;
        grid-area: header;
        background-color: #0D0D0D;
        display: flex;
        justify-content:space-between;
        align-items: center;
        font-size: 1.5em;
        font-weight: bold;
        padding-right: 3rem;
        padding-left: 3rem;
        flex-wrap: wrap;
        z-index:10;
        
    }
    .nav-list{
        display: flex;
        flex-direction: row;
        list-style: none;
        color: #fff;
        gap: 6rem;
        font-family: "Poppins", sans-serif;
        font-weight: 100;
        font-style: normal;
        font-size: 23px;
        font-weight:300; 
            
    }
    .nav-list a{
        text-decoration: none;
        color: #fff;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    .nav-list a:hover{
        color: #BFBFBF;
    }
    .logo{
        align-items: center;
        color:#fff;
        height: 150px;
        width: auto;
    }
    .mobile-menu div{
        background:#fff;
        width: 32px;
        height: 2px;
        margin: 8px;
    }
    .mobile-menu{
        display: none;
        cursor: pointer;
        z-index: 2;
    }
    article {
        position: relative;
        grid-area: article;
        display: flex;
        flex-direction:column;
        background-color: #d9d9d928;
        min-height: 100%;
        justify-content:center;
        font-weight: bold;
        padding-left: 6rem; 
        padding-right: 25rem; 
        padding-bottom: 80px;
        padding-top: 10rem;
        margin-bottom: 0; 
    }
    article h1{
        font-family: "Poppins", sans-serif;
        font-size: 45px;
        font-weight:normal;
        margin-top: 0;

    }
    article h3{
        font-family: "Poppins", sans-serif;
        font-size: 24px;
        font-weight:normal;
    }
    article p{
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight:normal;
    }

    .bold{
        font-weight: bold;
    }

    section{
        position: relative;
        grid-area: section;
        display: flex;
        flex-direction:column;
        background-color: #d9d9d928;
        align-items: center;
        font-weight: bold;
        min-height: 100%;
        padding-bottom: 10rem;
        padding-top: 12rem;
        gap: 2rem;
}
        
     section h1{
        font-family: "Poppins", sans-serif;
        font-size: 50px;
        font-weight:500;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem; 
        color: #333; 
        margin-top: 0;   
    }
    .card{
        height: 550px ;
        width: 320px;
        background-color: transparent;
        border: none;
        border-radius: 20px;
        color: #000000;
        padding: 20px 23px 20px 22px;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
        transition: 0.7s ease ;
        flex: 0 1 auto;
        
    }
    .card:hover{
        transform:scale(1.03)
    }
    .cards-container {
        display: flex; 
        flex-wrap: wrap;
        justify-content: center; 
        gap: 25px; 
}
    .card img{
        justify-content: center;
        height: 206px ;
        width:276px;
    }

    .card-titulo{
        text-align: center;
        font-size: 28px;
        font-family: "League Spartan", sans-serif;
        font-weight: 300;
        font-style: normal;
        margin-top: 5px;
    }
    .card-descricao{        
        font-size: 25px;
        font-family: "League Spartan", sans-serif;
        font-weight: 300;
        font-style: normal;
        margin-top: 5px;
        margin-top: 15px;
    }
    .card-texto{        
        font-size: 18px;
        font-family: "League Spartan", sans-serif;
        font-weight: 300;
        font-style: normal;
        margin-top: 5px;
        margin-top: 15px;
    }


    
    @media (min-width:1224px) and (max-width:1439px) {
        article {
            padding-left: 4rem;
            padding-right: 15rem; 
        }

    }

    @media (min-width:768px) and (max-width:1023px){
        .mobile-menu{
            transform: translateX(100%);
        }
        
        article {
            padding-left: 3rem;
            padding-right: 8rem; /* Reduzir mais o padding */       
        }
        article h1 { font-size: 38px; }
        article h3 { font-size: 24px; }
        article p { font-size: 16px; }
        
    }


    @media (min-width: 769px) and (max-width: 854px) {
        .nav-list {
            position: absolute;
            top: 0vh;
            width: 50%;
            height: 85vh;
            right: 0;
            background:#0D0D0D;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateY(-100%);
            transition: 0.3s ease-in;
            gap:3rem;
            
        }
        header{
            height:100px;
        }
        .logo{
            align-items: center;
            color:#fff;
            height: 100px;
            width: auto;
        }
        .nav-list li{           
           
           margin-bottom: -2rem;  
        }
        
        .nav-list.active{

            transform: translateY(0);
        }
  
        .mobile-menu {
            margin-right:2rem;
            display: block;
            z-index: 2; 
        }

        article {
            padding-left: 2rem;
            padding-right: 2rem;
        }
        article h1 { font-size: 26px; }
        article h3 { font-size: 19px; }
        article p { font-size: 17px; }
        
    }

    @media (max-width: 768px) {
        .nav-list{
            position: absolute;
            top: 0vh;
            width: 50%;
            height: 55vh;
            right: 0;
            background:#0D0D0D;
            flex-direction: column;
            align-items: center;
            justify-content:center;
            transform: translateY(-100%);
            transition:transform 0.3s ease-in;
  
        }
        .nav-list li{           
           
           margin-bottom: -2rem;  
        }

        .nav-list.active{

            transform: translateY(0%);
        }
        .mobile-menu{
            display: block;
        }
        .logo{
            color:#0010ee; /* Mantenha sua cor de teste */
        }
        article {
            padding-left: 1.5rem;
            padding-right: 1.5rem; /* Padding mais adequado para celulares */
        }
        article h1 { font-size: 31px; }
        article h3 { font-size: 19px; }
        article p { font-size: 17px; }
        .grid-container {
        grid-template-rows: 150px 600px auto 80px;
        }
        header {
            padding-right: 1.5rem;
            padding-left: 1.5rem;
        }       

       
    }

    /* Para telas menores que 480px (exemplo, celulares pequenos) */
    @media (max-width: 480px){
        .nav-list{
            position: absolute;
            top: 0vh;
            width: 50%;
            height: 55vh;
            right: 0;
            background:#0D0D0D;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateY(-100%);
            transition: 0.3s ease-in;
        }
        .nav-list li{           
           
           margin-bottom: -3rem;  
        }
        .nav-list.active{

            transform: translateY(0);
        }
       
        .mobile-menu{
            display: block;
        }
        .logo{
            color:#ee0063; /* Mantenha sua cor de teste */
        }
        article {
            padding-left: 1rem;
            padding-right: 1rem; /* Padding mínimo */
            font-size: 0.9em;
        }
        article h1 { font-size: 26px; }
        article h3 { font-size: 14px; }
        article p { font-size: 12px; }
        .grid-container {
        grid-template-rows: 150px 600px auto 80px;
        }
        header {
            padding-right: 1rem;
            padding-left: 1rem;
        }
    }  

.mobile-menu.active .line1{
    transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2{
    opacity: 0;
}
.mobile-menu.active .line3{
    transform: rotate(45deg) translate(-5px, -7px);
}
