/* ========== Diploma Pages Shared CSS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.diploma-page {
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 80px auto 0;
    font-family: 'Inter', sans-serif;
}

.diploma-page-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

/* Badges Row */
.diploma-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.diploma-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.diploma-badge svg {
    flex-shrink: 0;
}

/* Text Content */
.diploma-content {
    color: #333;
    font-size: 15px;
    line-height: 1.75;
}

.diploma-content p {
    margin-bottom: 18px;
}

.diploma-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 36px 0 16px;
}

/* Highlighted Box */
.diploma-highlight-box {
    background: #f8faf8;
    border-left: 4px solid #25d366;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
}

.diploma-highlight-box .box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.diploma-highlight-box .box-icon {
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.diploma-highlight-box .box-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.diploma-highlight-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 10px;
}

.diploma-highlight-box p:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.diploma-cta {
    text-align: center;
    margin: 36px 0;
}

.btn-solicitar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-solicitar:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-solicitar img {
    width: 20px;
    height: 20px;
}

/* Final highlight text */
.diploma-final-text {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin: 28px 0 8px;
    line-height: 1.6;
}

/* ========== Curso Técnico - Salary Cards ========== */
.salary-cards {
    margin: 24px 0;
}

.salary-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    transition: box-shadow 0.2s;
}

.salary-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.salary-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    width: 100%;
    margin-bottom: 4px;
}

.salary-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
}

.salary-detail {
    display: flex;
    flex-direction: column;
}

.salary-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.salary-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.salary-value.max {
    color: #25d366;
    font-weight: 700;
}

/* ========== Tecnólogo - Course Grid ========== */
.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.course-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.course-grid-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #ff8c00;
}

.course-grid-item .course-icon {
    color: #ff8c00;
    flex-shrink: 0;
}

/* Documentation List */
.doc-list-box {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
}

.doc-list-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
}

.doc-list-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.doc-list-box ul li {
    font-size: 14px;
    color: #555;
    padding: 4px 0;
    line-height: 1.6;
}

/* Mission Box */
.mission-box {
    background: #f0f4ff;
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.mission-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    font-style: italic;
}

.mission-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== Bacharelado - Courses Grid ========== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.course-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #ff8c00;
}

.course-item svg {
    color: #ff8c00;
    flex-shrink: 0;
}

.course-item span {
    font-weight: 500;
}

/* Duration Box */
.duration-box {
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 36px 0;
}

.duration-title {
    font-size: 18px;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 16px;
}

.duration-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.duration-item svg {
    flex-shrink: 0;
}

.duration-item strong {
    color: #333;
}

/* ========== Especialização - Motivos Grid ========== */
.motivos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.motivo-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.motivo-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #ff8c00;
}

.motivo-icon {
    width: 36px;
    height: 36px;
    background: #fff3e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.motivo-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.motivo-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ========== Pós-Graduação - Processo & Equipe Boxes ========== */
.processo-box {
    background: #f5f5f5;
    border-left: 4px solid #999;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.processo-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.processo-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.equipe-box {
    background: #f0fff0;
    border-left: 4px solid #25d366;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.equipe-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.equipe-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== MBA - Diferença Box ========== */
.diferenca-box {
    background: #f8f9fa;
    border-left: 4px solid #1a1a2e;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.diferenca-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 18px;
}

.diferenca-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 18px 0 6px;
}

.diferenca-box h4:first-of-type {
    margin-top: 0;
}

.diferenca-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .diploma-page {
        padding: 40px 16px 30px;
        margin-top: 60px;
    }

    .diploma-page-title {
        font-size: 26px;
    }

    .diploma-badges {
        gap: 16px;
    }

    .diploma-content h2 {
        font-size: 19px;
    }

    .diploma-highlight-box {
        padding: 18px 20px;
    }

    .salary-info {
        gap: 20px;
    }

    .course-grid,
    .courses-grid,
    .motivos-grid {
        grid-template-columns: 1fr;
    }

    .duration-box {
        padding: 18px 20px;
    }

    .doc-list-box,
    .mission-box {
        padding: 18px 20px;
    }
}