/* ===== RESPONSIVIDADE ESPECÍFICA PARA TELAS DE 1024px ===== */
/* Arquivo dedicado para otimizações de tablets e telas médias */

/* Breakpoint principal para tablets e telas médias */
@media (min-width: 768px) and (max-width: 1024px) {
    
    /* ===== CONTAINER E LAYOUT ===== */
    .container {
        max-width: 960px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* ===== ESPAÇAMENTOS GLOBAIS ===== */
    section {
        padding: 3rem 0 !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* ===== TIPOGRAFIA ===== */
    .display-4 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .display-6 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    .lead {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    /* ===== BOTÕES ===== */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .btn {
        font-size: 0.9rem !important;
    }
    
    /* ===== GRID ADJUSTMENTS ===== */
    .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    .col-md-6,
    .col-lg-4,
    .col-lg-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* ===== CARDS DE SOLUÇÕES ===== */
    .sol-card {
        min-height: 130px !important;
        max-width: 280px !important;
        margin: 0 auto;
        border-radius: 0.75rem !important;
    }
    
    .sol-card .card-body {
        padding: 1.5rem !important;
    }
    
    .sol-title {
        font-size: 1rem !important;
        line-height: 1.3;
    }
    
    .btn-sol {
        font-size: 0.85rem !important;
        padding: 0.4rem 1rem !important;
    }
    
    /* ===== BLOG CARDS ===== */
    .blog-card .card-body {
        padding: 1.5rem !important;
    }
    
    .blog-card h5 {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }
    
    /* ===== FAQ SECTION ===== */
    .faq-item .card-body {
        padding: 1.5rem !important;
    }
    
    .faq-question {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }
    
    /* ===== IMAGENS ===== */
    .intro-image {
        max-width: 350px !important;
    }
    
    /* ===== PERFORMANCE ===== */
    .main-navbar {
        backdrop-filter: blur(4px);
    }
    
    .sol-card:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
    }
}

/* ===== AJUSTES ESPECÍFICOS PARA 1024px EXATO ===== */
@media (width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .sol-card {
        max-width: 260px !important;
    }
    
    .vagas-cards .vaga-card-mini {
        display: none;
    }
}

/* ===== MELHORIAS PARA TABLETS EM LANDSCAPE ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .sol-card {
        max-width: 300px !important;
    }
    
    .intro-image {
        max-width: 400px !important;
    }
    
    .main-navbar .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}

/* ===== OTIMIZAÇÕES PARA PERFORMANCE EM TABLETS ===== */
@media (max-width: 1024px) {
    /* Reduz efeitos de hover para melhor performance */
    .sol-card:hover {
        transform: translateY(-2px) scale(1.01);
        transition: transform 0.2s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
        transition: transform 0.2s ease;
    }
    
    /* Otimiza backdrop-filter */
    .main-navbar {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}

/* ===== MELHORIAS PARA NAVEGAÇÃO EM TABLETS ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .main-navbar .navbar-brand img {
        height: 60px;
    }
    
    .main-navbar .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    body {
        padding-top: 90px;
    }
}

/* ===== MELHORIAS PARA HERO SECTIONS ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: 60vh !important;
        padding: 3rem 0;
    }
    
    .hero-interno {
        min-height: 45vh !important;
        padding: 2rem 0;
    }
    
    .hero-section h1,
    .hero-interno h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-section p,
    .hero-interno p {
        font-size: 1.1rem !important;
    }
}

/* ===== MELHORIAS PARA SEÇÃO DE VAGAS ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .vagas-modern-banner {
        min-height: 250px !important;
        padding: 2rem 0;
    }
    
    .vagas-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .vagas-desc {
        font-size: 1rem !important;
    }
    
    .vagas-stats {
        gap: 2rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .vagas-actions .btn {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
    }
}

/* ===== MELHORIAS PARA FOOTER ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-modern {
        padding: 3rem 0 2rem 0 !important;
    }
    
    .footer-modern .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-modern .row.align-items-start > div {
        text-align: center;
    }
    
    .footer-modern .d-flex {
        justify-content: center;
    }
    
    .footer-social {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
} 