@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');
:root{

--cor-primaria: #000000;
--cor-secundaria:#b5c0ba;
--cor-terciaria: #202ccf;
--cor-hover: #02edf5;

--font-principal: "Krona One", "sans-serif";
--font-secundaria: "Montserrat" , "sans-serif";

}
*{
    margin: 0;
    padding: 0;
}

body{
    /* height: 100vh; */
    box-sizing: border-box;
    background-color: var(--cor-primaria);
    color: var(--cor-secundaria);
    max-width: 100%;
    gap:10%;
}
.cabecalho{
    padding: 2% 0 0 15%;
}
.cabecalho__menu {
    display: flex;
    gap:80px;
}
.cabecalho__menu__link {
    
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-secundaria);
    text-decoration: none;
    color: var(--cor-terciaria);
   
}

.cabecalho__menu__link:hover {
    color: var(--cor-secundaria);
}
  


.titulo-destaque{
    color: var(--cor-terciaria);
}

.apresentacao {
    padding: 5% 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:82px;
}

.apresentacao__conteudo{
    width: 615px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apresentacao__conteudo__titulo{
    font-size: 2.25rem;
    font-family: var(--font-principal);
}

.apresentacao__conteudo__texto{
    font-size: 1.5rem;
    font-family: var(--font-secundaria);

}


.apresentacao__links{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: auto;
    gap: 32px;
    padding-bottom: 10px;
   
}
/* Adiciona um espaçamento de 10 pixels abaixo do texto */
.apresentacao__conteudo__texto {
    font-size: 2.5rem;
    margin-bottom: 10px;
}



.apresentacao__links__subtitulo{
    font-family: var(--font-principal);
    font-weight: 400;
    font-size: 1.5rem;
}
.apresentacao__links__link{
    /* background-color: #22D4FD; */
    display: flex;
    justify-content: center;
    gap: 16px;
    border: 2px solid var(--cor-terciaria);
    width: 378px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 21.5px 0;
    text-decoration: none;
    color: var(--cor-secundaria);
    font-family: var(--font-secundaria);
   
}

.apresentacao__links__link:hover {
    border: 2px solid #02edf5;
    cursor: pointer;
    background-color: #263958;
    
  
}


.rodape {
    background: rgb(1,1,10);
    background: linear-gradient(90deg, rgba(1,1,10,0.8953781341638218) 0%, rgba(37,0,235,1) 0%, rgba(15,15,14,0.9878151089537377) 51%);
    padding: 24px;
    color:var(--cor-secundaria);
    background-color: var(--cor-rodape);
    text-align: center;
    font-family: var(--font-principal);
    font-size: 1.5rem;
    font-weight: 400;
}

a:hover{
    background-color: #22211c98;
}
span:hover{
   color: #a5c5ff;
}
.img-profile{

    height: 350px;
    max-width: 90%;
    border-radius: 6px;
}



#contato{
    font-size: 1.5rem;
}
    /*MEDIA QUERIES */


    @keyframes scroll{
    0%
    {
      -webkit-transform: translateX(0);
    }
    100%{
      -webkit-transform: translateX(calc(-240px * 5));
    }
    }
    
    
    
    /*MEDIA QUERIES*/
    
    
    @media only screen and (max-width: 768px) {
        
        html{
        
        font-size: 50%;
    
    
    
    }
    /* For desktop: */
        .col-1 {width: 8.33%;}
        .col-2 {width: 16.66%;}
        .col-3 {width: 25%;}
        .col-4 {width: 33.33%;}
        .col-5 {width: 41.66%;}
        .col-6 {width: 50%;}
        .col-7 {width: 58.33%;}
        .col-8 {width: 66.66%;}
        .col-9 {width: 75%;}
        .col-10 {width: 83.33%;}
        .col-11 {width: 91.66%;}
        .col-12 {width: 100%;}
    }
    
   



    /* Mobile */
    @media only screen and (max-width: 768px) {
    body {
        font-size: 1.5rem; /* Adjust the base font size for better mobile readability */
    }

    .cabecalho {
        padding: 10% ; /* Adjust header padding for smaller screens */
    }

    .cabecalho__menu {
        justify-content:center;
        gap: 25px; /* Adjust menu item spacing for smaller screens */
    }

    .apresentacao {
        padding: 5% 10%; /* Adjust section padding for smaller screens */
        flex-direction: column-reverse; /* Stack content in presentation section */
        align-items: center;
    }

    .apresentacao__conteudo {
        width: 100%; /* Make content width full for smaller screens */
    }

    .apresentacao__conteudo__titulo {
        font-size: 2.25rem; /* Adjust title font size for smaller screens */
    }

    .apresentacao__conteudo__texto {
        font-size: 2.0rem; /* Adjust text font size for smaller screens */
    }

    .apresentacao__links {
        gap: 16px; /* Adjust link spacing for smaller screens */
    }

    .apresentacao__links__link {
        width: 95%; /* Make links full-width for smaller screens */
    }

    .rodape {
        font-size: 1.2em; /* Adjust footer font size for smaller screens */
        padding:5%;

    }
    }

    /* Tablet */
    @media only screen and (min-width: 769px) and (max-width: 1024px) {
        /* Add tablet-specific styles here if needed */
    }

