/* ==========================================================================
   SEÇÃO PROGRAMA DO CURSO - CSS OTIMIZADO MOBILE-FIRST
   Performance + UX + Touch Targets + Accessibility
   ========================================================================== */

.program {
    padding: 60px 0; /* Mobile first */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Pattern decorativo - Desabilitado por padrão (mobile first) */
.program::before {
    display: none;
}

/* ==========================================================================
   BADGES E HEADERS - MOBILE FIRST
   ========================================================================== */

.section-badge.academic {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 12px 24px; /* Touch target 44px+ */
    border-radius: 50px;
    font-size: 14px; /* Mobile optimized */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
    min-height: 44px; /* Touch target */
}

/* ==========================================================================
   OPÇÕES DE FORMAÇÃO - MOBILE FIRST
   ========================================================================== */

.formation-options {
    background: white;
    border-radius: 30px;
    padding: 30px 20px; /* Mobile first */
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.options-title {
    text-align: center;
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.3;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 25px;
    margin-bottom: 30px;
}

.option-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 25px; /* Mobile optimized */
    position: relative;
    transition: all 0.3s ease;
}

.option-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    border: 3px solid var(--primary);
    transform: scale(1.02); /* Reduzido para mobile */
    box-shadow: 0 20px 60px rgba(42,91,127,0.15);
}

.option-ribbon {
    position: absolute;
    top: -10px;
    right: 20px; /* Mobile adjusted */
    background: linear-gradient(135deg, var(--secondary) 0%, #ff3b30 100%);
    color: white;
    padding: 8px 16px; /* Touch target */
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(217,102,71,0.4);
    min-height: 32px; /* Touch target */
    display: flex;
    align-items: center;
}

.option-badge {
    display: inline-block;
    padding: 8px 16px; /* Touch target */
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    min-height: 32px; /* Touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.option-card.basic .option-badge {
    background: rgba(74,144,226,0.1);
    color: #4A90E2;
}

.option-card.premium .option-badge.hot {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF3838 100%);
    color: white;
}

.option-title {
    font-size: 20px; /* Mobile optimized */
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.option-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.4;
}

.option-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.option-features li {
    padding: 12px 0; /* Touch target */
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px; /* Mobile optimized */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    min-height: 44px; /* Touch target */
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features li.highlight {
    font-weight: 700;
    color: var(--primary);
}

.option-features li i {
    color: var(--success);
    font-size: 16px; /* Touch target */
    width: 20px; /* Consistent spacing */
    text-align: center;
}

/* Preços - Mobile Optimized */
.option-price {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 15px; /* Mobile optimized */
    display: block;
    margin-bottom: 5px;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 32px; /* Mobile optimized */
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.1;
}

.featured .price-value {
    color: var(--secondary);
}

.price-condition {
    display: block;
    font-size: 13px;
    color: var(--gray);
}

.price-savings {
    display: inline-block;
    background: linear-gradient(135deg, #27AE60 0%, #219A52 100%);
    color: white;
    padding: 8px 16px; /* Touch target */
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
}

/* Botões das opções - Touch Optimized */
.btn-option {
    display: block;
    text-align: center;
    padding: 18px 30px; /* Touch target 44px+ */
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px; /* Touch target */
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card.basic .btn-option {
    background: var(--primary);
    color: white;
}

.option-card.basic .btn-option:hover {
    background: #1a4058;
    transform: translateY(-2px);
}

.option-card.premium .btn-option {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff3b30 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(217,102,71,0.3);
}

.option-card.premium .btn-option:hover {
    transform: translateY(-2px); /* Reduzido para mobile */
    box-shadow: 0 12px 35px rgba(217,102,71,0.4);
}

/* Aviso de localização - Mobile First */
.location-notice {
    background: linear-gradient(135deg, rgba(42,91,127,0.05) 0%, rgba(102,124,77,0.05) 100%);
    border-left: 3px solid var(--primary);
    padding: 20px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* Mobile first */
    align-items: center;
    text-align: center;
    gap: 10px;
}

.location-notice i {
    color: var(--primary);
    font-size: 24px; /* Touch target */
}

/* ==========================================================================
   MATERIAL DIDÁTICO - MOBILE FIRST
   ========================================================================== */

.course-material {
    background: white;
    border-radius: 20px;
    padding: 30px 20px; /* Mobile first */
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.material-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 30px;
    align-items: center;
    text-align: center;
}

.material-image {
    position: relative;
    max-width: 250px; /* Mobile optimized */
    margin: 0 auto;
}

.material-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); /* Reduzido para mobile */
}

.material-badge {
    position: absolute;
    top: -35px;
    right: -15px;
    background: var(--accent);
    color: var(--dark);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(242,176,59,0.4);
    min-height: 32px; /* Touch target */
}

.material-info h3 {
    font-size: 20px; /* Mobile optimized */
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.material-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    gap: 12px;
    /* maior que o atual */
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.45;
}

.material-features li {
    /* troque o center por flex-start */
    display: flex;
    align-items: flex-start;   /* alinha bem quando o texto quebra */
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0;
    min-height: 44px;
    color: var(--dark);
    /* controla tamanho do ícone por variável */
    --icon-size: 18px;
}

.material-features li i {
    color: var(--success);
    font-size: var(--icon-size);
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 var(--icon-size); /* fixa a coluna do ícone */
    margin-top: 2px;            /* alinha com a 1ª linha do texto */
}

/* ==========================================================================
   MÓDULOS ACCORDION - MOBILE FIRST TOUCH OPTIMIZED
   ========================================================================== */

.modules-section {
    margin-bottom: 60px;
}

.modules-title {
    text-align: center;
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
}

.modules-subtitle {
    text-align: center;
    font-size: 15px; /* Mobile optimized */
    color: var(--gray);
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.5;
}

.modules-accordion {
    max-width: 100%; /* Mobile first */
    margin: 0 auto;
    padding: 0 10px;
}

.module-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.module-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Reduzido para mobile */
    transform: translateX(2px); /* Reduzido para mobile */
}

.module-item.featured {
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(217,102,71,0.1);
}

.module-badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 8px 16px; /* Touch target */
    border-radius: 0 0 0 15px;
    font-size: 11px;
    font-weight: 700;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.module-header {
    display: flex;
    align-items: center;
    padding: 20px 15px; /* Mobile optimized */
    cursor: pointer;
    position: relative;
    min-height: 44px; /* Touch target */
}

.module-number {
    width: 40px; /* Mobile optimized */
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Mobile optimized */
    font-weight: 900;
    margin-right: 15px; /* Mobile optimized */
    flex-shrink: 0;
}

.module-item.featured .module-number {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.module-info {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.module-info h4 {
    font-size: 16px; /* Mobile optimized */
    margin-bottom: 5px;
    color: var(--dark);
    line-height: 1.3;
}

.module-duration {
    font-size: 15px; /* Mobile optimized */
    color: var(--gray);
}

.module-toggle {
    width: 44px; /* Touch target */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.module-item.active .module-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #f8f9fa;
}

.module-item.active .module-content {
    max-height: 600px; /* Increased for mobile */
}

.module-content ul {
    padding: 20px 15px; /* Mobile optimized */
    list-style: none;
}

.module-content li {
    padding: 10px 0; /* Touch target */
    padding-left: 25px;
    position: relative;
    font-size: 14px; /* Mobile optimized */
    color: var(--dark);
    line-height: 1.5;
    min-height: 40px;
}

.module-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary);
    font-size: 16px;
}

/* ==========================================================================
   TABELA DE COMPARAÇÃO - MOBILE FIRST
   ========================================================================== */

.program-comparison {
    background: white;
    border-radius: 20px;
    padding: 30px 20px; /* Mobile first */
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.program-comparison h3 {
    text-align: center;
    font-size: 22px; /* Mobile optimized */
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.3;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; /* Minimum width for mobile scroll */
}

.comparison-table th,
.comparison-table td {
    padding: 12px 8px; /* Mobile optimized */
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px; /* Mobile optimized */
    min-height: 44px; /* Touch target */
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px; /* Mobile optimized */
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: linear-gradient(135deg, rgba(42,91,127,0.05) 0%, rgba(102,124,77,0.05) 100%);
    color: var(--primary);
    font-weight: 700;
}

.comparison-table td i.fa-check {
    color: var(--success);
    font-size: 18px; /* Touch target */
}

.comparison-table td i.fa-times {
    color: #ff3b30;
    font-size: 18px; /* Touch target */
}

.comparison-footer {
    text-align: center;
    font-size: 14px; /* Mobile optimized */
    color: var(--gray);
    line-height: 1.5;
    padding: 0 10px;
}

/* ==========================================================================
   BÔNUS - MOBILE FIRST
   ========================================================================== */

.program-bonus {
    margin-bottom: 60px;
}

.program-bonus h3 {
    text-align: center;
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.3;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 20px;
}

.bonus-item {
    text-align: center;
    padding: 25px 20px; /* Mobile optimized */
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 44px; /* Touch target */
}

.bonus-item:hover {
    transform: translateY(-3px); /* Reduzido para mobile */
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.bonus-icon {
    width: 60px; /* Mobile optimized */
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px; /* Mobile optimized */
    margin: 0 auto 20px;
}

.bonus-item h4 {
    font-size: 16px; /* Mobile optimized */
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
}

.bonus-item p {
    font-size: 15px; /* Mobile optimized */
    color: var(--gray);
    line-height: 1.5;
}

/* ==========================================================================
   PROGRAM EXCELLENCE - MOBILE FIRST
   ========================================================================== */

.program-excellence {
    background: linear-gradient(135deg, rgba(42,91,127,0.05) 0%, rgba(102,124,77,0.05) 100%);
    border-radius: 25px;
    padding: 30px 20px; /* Mobile first */
    margin: 60px 0;
    text-align: center;
    position: relative;
}

.program-excellence h3 {
    font-size: 22px; /* Mobile optimized */
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.program-excellence h3 i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 24px;
}

/* Grid de Excellence - Mobile First */
.excellence-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 20px;
    margin-bottom: 30px;
}

.excellence-item {
    background: white;
    border-radius: 20px;
    padding: 25px 20px; /* Mobile optimized */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px; /* Touch target */
}

.excellence-item:hover {
    transform: translateY(-5px); /* Reduzido para mobile */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Ícone com Touch Target */
.excellence-icon {
    width: 50px; /* Mobile optimized */
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px; /* Mobile optimized */
    color: white;
}

/* Garantir que os ícones apareçam */
.excellence-icon i {
    font-size: 24px !important;
    color: white !important;
    display: block !important;
}

/* SVG Icons - Mobile Optimized */
.excellence-icon .icon-svg {
    width: 28px; /* Mobile optimized */
    height: 28px;
    filter: brightness(0) invert(1);
}

.excellence-icon.svg-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.excellence-item:hover .excellence-icon .icon-svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Animação do drone otimizada para mobile */
.excellence-icon.drone-icon .icon-svg {
    animation: droneFloat 3s ease-in-out infinite;
}

@keyframes droneFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(-1deg); /* Reduzido para mobile */
    }
    50% { 
        transform: translateY(-5px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(1deg); 
    }
}

/* Credencial Highlight - Mobile Optimized */
.option-card .highlight-new {
    background: linear-gradient(135deg, rgba(102,124,77,0.1) 0%, rgba(242,176,59,0.1) 100%);
    padding: 8px 0; /* Touch target */
    margin: 8px 0;
    border-left: 3px solid var(--primary);
    min-height: 32px;
    display: flex;
    align-items: center;
}

.credential-highlight {
    margin: 20px 0;
    padding: 15px;
    background: rgba(102,124,77,0.05);
    border-radius: 8px;
    text-align: center;
}

.credential-highlight img {
    width: 100%; /* Mobile responsive */
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

.credential-highlight p {
    font-size: 15px; /* Mobile optimized */
    color: var(--text);
    margin: 10px 0 0;
    line-height: 1.4;
}

.credential-highlight strong {
    color: var(--primary);
}

/* ==========================================================================
   CTA DA SEÇÃO - MOBILE FIRST
   ========================================================================== */

.cta-wrapper {
    background: linear-gradient(135deg, rgba(217,102,71,0.05) 0%, rgba(242,176,59,0.05) 100%);
    border: 2px solid var(--secondary);
    border-radius: 30px;
    padding: 30px 20px; /* Mobile first */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217,102,71,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee-notice {
    display: flex;
    flex-direction: column; /* Mobile first */
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 15px; /* Mobile optimized */
    color: var(--gray);
    text-align: center;
}

.guarantee-notice i {
    color: var(--success);
    font-size: 18px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS - DESKTOP ENHANCEMENTS
   ========================================================================== */

/* Tablet Portrait */
@media (min-width: 768px) {
    .program {
        padding: 80px 0;
    }

    /* Pattern decorativo habilitado em tablet+ */
    .program::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        right: -200px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(42,91,127,0.03) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .formation-options {
        padding: 40px 30px;
    }
    
    .options-title {
        font-size: 28px;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .option-card.featured {
        transform: scale(1.05);
    }
    
    .option-title {
        font-size: 22px;
    }
    
    .option-features li {
        font-size: 15px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .material-content {
        grid-template-columns: 300px 1fr;
        text-align: left;
    }
    
    .material-image {
        max-width: 300px;
    }
    
    .material-info h3 {
        font-size: 24px;
    }
    
    .material-features li {
        justify-content: flex-start;
        font-size: 15px;
    }
    
    .modules-title {
        font-size: 28px;
    }
    
    .modules-subtitle {
        font-size: 16px;
        padding: 0;
    }
    
    .modules-accordion {
        max-width: 900px;
        padding: 0;
    }
    
    .module-header {
        padding: 25px 30px;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 20px;
    }
    
    .module-info h4 {
        font-size: 18px;
    }
    
    .module-duration {
        font-size: 14px;
    }
    
    .module-content ul {
        padding: 30px;
    }
    
    .module-content li {
        font-size: 15px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bonus-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .bonus-item h4 {
        font-size: 18px;
    }
    
    .bonus-item p {
        font-size: 14px;
    }
    
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .excellence-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .excellence-icon .icon-svg {
        width: 32px;
        height: 32px;
    }
    
    .program-comparison {
        padding: 40px 30px;
    }
    
    .program-comparison h3 {
        font-size: 28px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .comparison-table th {
        font-size: 16px;
    }
    
    .comparison-footer {
        font-size: 16px;
        padding: 0;
    }
    
    .location-notice {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .guarantee-notice {
        flex-direction: row;
        gap: 10px;
        font-size: 14px;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .program-excellence {
        padding: 40px 30px;
    }
    
    .program-excellence h3 {
        font-size: 28px;
    }
    
    .program-bonus h3 {
        font-size: 28px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .program {
        padding: 100px 0;
    }
    
    .formation-options {
        padding: 50px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .excellence-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .excellence-item {
        padding: 30px 20px;
    }
    
    .program-excellence {
        padding: 50px;
    }
    
    .cta-wrapper {
        padding: 50px;
    }
}

/* Print Optimization */
@media print {
    .program {
        page-break-inside: avoid;
    }
    
    .cta-wrapper::before,
    .program::before {
        display: none;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
