
/* ============================================
   TABLET.CSS - Estilos Responsivos para Tablet
   Breakpoint: 768px - 1024px
   ============================================ */

@media screen and (max-width: 1024px) {
    
    /* Navegação */
    nav {
        height: 60px;
    }
    
    nav a {
        padding: 18px 15px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    /* Header */
    header {
        height: 60vh;
    }
    
    /* Seções */
    section {
        padding-top: 8%;
        height: auto;
        min-height: 80vh;
    }
    
    /* Títulos */
    .titulo {
        font-size: 36px;
        padding: 10px;
    }
    
    .barra {
        width: 8%;
    }
    
    .subtitulo {
        font-size: 18px;
        margin-top: 2%;
    }
    
    /* Seção Sobre */
    #sobre article {
        width: 90%;
        margin: 5% auto 0 auto;
        padding: 20px;
        gap: 25px;
    }
    
    .imgsobre {
        width: 240px;
        height: 240px;
    }
    
    .nome {
        font-size: 26px;
    }
    
    .cargo {
        font-size: 15px;
    }
    
    .paragrafo {
        font-size: 17px;
        line-height: 1.5;
    }
    
    /* Seção Habilidades */
    #habilidades {
        height: auto;
        min-height: 70vh;
        padding-bottom: 8%;
        padding-top: 8%;
    }
    
    .habilidades-container {
        width: 85%;
        gap: 35px;
        margin: 40px auto;
    }
    
    .habilidade-grupo {
        flex-basis: 45%;
    }
    
    .habilidade-grupo h3 {
        font-size: 22px;
    }
    
    .habilidade-item p {
        font-size: 15px;
    }
    
    /* Seção Portfólio */
    #portfolio {
        height: auto;
        min-height: 90vh;
        padding-bottom: 8%;
    }
    
    .portifolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        width: 90%;
        margin: 40px auto;
    }
    
    .projeto-card img {
        height: 280px;
    }
    
    .projeto-titulo {
        font-size: 22px;
    }
    
    .projeto-categoria {
        font-size: 15px;
    }
    
    /* Footer */
    .footer-conteudo {
        padding: 50px 5%;
        justify-content: space-around;
    }
    
    .footer-coluna {
        width: 30%;
        min-width: 180px;
    }
    
    .footer-coluna h3,
    .footer-coluna h4 {
        font-size: 18px;
    }
    
    .footer-coluna p {
        font-size: 13px;
    }
    
    .footer-coluna a {
        font-size: 14px;
    }
    
    /* Separadores Decorativos */
    .separador-decorativo-dinamico {
        height: 240px;
    }
    
    .forma-principal {
        width: 100px;
        height: 100px;
    }
    
    .forma-secundaria {
        width: 40px;
        height: 40px;
    }
    
    .separador-2 {
        height: 300px;
    }
    
    .forma-um-2 {
        width: 130px;
        height: 130px;
    }
    
    .forma-dois-2 {
        width: 60px;
        height: 60px;
    }
    
    .forma-tres-2 {
        width: 25px;
        height: 25px;
    }
}

/* Ajustes específicos para tablets menores (768px - 900px) */
@media screen and (max-width: 900px) {
    
    #sobre article {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .imgsobre {
        margin-bottom: 20px;
    }
    
    .paragrafo {
        text-align: justify;
    }
    
    .habilidades-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .habilidade-grupo {
        flex-basis: 100%;
        width: 100%;
    }
    
    .footer-conteudo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-coluna {
        width: 100%;
        margin-bottom: 30px;
    }
}
