.presencial-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-dark);
    padding-top: 100px;
    overflow: hidden;
}

.presencial-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(26, 60, 110, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(39, 174, 96, 0.1) 0%, transparent 40%);
}

.presencial-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-white);
}

.presencial-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presencial-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 24px;
    line-height: 1.2;
}

.presencial-hero h1 .highlight {
    color: var(--color-accent);
}

.presencial-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.aprovacoes {
    padding: 100px 0;
    background: var(--color-white);
}

.aprovacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aprovacao-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.aprovacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.aprovacao-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    font-family: var(--font-numeric);
    font-weight: 600;
    font-size: 14px;
}

.aprovacao-curso {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 15px;
    margin-bottom: 16px;
    margin-top: 40px;
}

.aprovacao-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 12px;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.aprovacao-nome {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 16px;
}

.aprovacao-extra {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.sentimentos {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.sentimentos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.sentimento-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sentimento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sentimento-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), #2A5A9E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sentimento-icon i {
    font-size: 32px;
    color: var(--color-white);
}

.sentimento-card:nth-child(2) .sentimento-icon { background: linear-gradient(135deg, var(--color-success), #34D399); }
.sentimento-card:nth-child(3) .sentimento-icon { background: linear-gradient(135deg, var(--color-accent), #FFD166); }
.sentimento-card:nth-child(4) .sentimento-icon { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.sentimento-card:nth-child(5) .sentimento-icon { background: linear-gradient(135deg, #EC4899, #F472B6); }

.sentimento-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.sentimento-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.localizacao {
    padding: 100px 0;
    background: var(--color-white);
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.localizacao-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.localizacao-info > p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.local-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.local-item i {
    width: 50px;
    height: 50px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.local-item div {
    display: flex;
    flex-direction: column;
}

.local-item strong {
    font-size: 16px;
    color: var(--color-text-main);
}

.local-item span {
    font-size: 15px;
    color: var(--color-text-muted);
}

.local-item .proximo {
    font-size: 13px;
    color: var(--color-success);
    font-weight: 500;
}

.localizacao-mapa {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    height: 450px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.localizacao-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.timon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary), #2A5A9E);
}

.timon-content {
    text-align: center;
    color: var(--color-white);
}

.timon-icon {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.timon-icon i {
    font-size: 40px;
    color: var(--color-primary);
}

.timon-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.timon-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.timon-section .btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.cta-presencial {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.cta-presencial-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-presencial h2 {
    font-size: 36px;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.cta-presencial .emoji {
    font-size: 64px;
    margin-bottom: 16px;
}

.cta-presencial > p {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .aprovacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sentimentos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .localizacao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .presencial-hero {
        min-height: 70vh;
        padding: 120px 24px 80px;
    }

    .presencial-hero h1 {
        font-size: 28px;
    }

    .presencial-hero p {
        font-size: 16px;
    }

    .aprovacoes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sentimentos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timon-content h2 {
        font-size: 24px;
    }

    .cta-presencial h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .aprovacoes-grid {
        grid-template-columns: 1fr;
    }

    .sentimentos-grid {
        grid-template-columns: 1fr;
    }

    .aprovacao-card img {
        width: 80px;
        height: 80px;
    }
}