@media only screen and (max-width: 1200px) {}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.header-main {
    height: 4rem;
    background: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 9999;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.b-matricula{
    text-align: center;
}

.logo_img01 {
    width: 9rem;
    margin-right: -10px;
    position: fixed;
    top: 10px;
    left: 10px;

}

.logo_img02 {
    width: 8rem;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 130px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 4rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.course-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.video1 {
    width: 560px;
    height: 315px;
}

.projeto-img60 {
    width: 50%;
}


.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 10px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #2c3e50;
}

.section {
    padding: 80px 0;
    background: white;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-title2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.content-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e8ecff;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.curriculum-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.discipline {
    background: white;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.discipline-header {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: white;
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.2rem;
}

.discipline-content {
    padding: 25px 30px;
}

.discipline-content ul {
    list-style: none;
}

.discipline-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.discipline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.price-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.professor-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

.professor-card h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.professor-card .title {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mec-badge {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

.urgency-banner {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 10px;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faculty-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faculty-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.faculty-item .degree {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;

}

.video-placeholder {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 20px;
    padding: 80px 40px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-placeholder iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
}

.certificate-section {
    background: white;
    padding: 80px 0;
}

.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.certificate-content h3 {
    color: #2c3e50;
    font-size: 2rem;

}

.certificate-content ul {
    list-style: none;

}

.certificate-content li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.certificate-content li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.certificate-image {
    text-align: center;
}

.certificate-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 80px 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(45deg, #34495e, #2980b9);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .logo_img01 {
        width: 8.5rem;
        margin-right: -10px;
    }

    .logo_img02 {
        width: 7.5rem;
        margin-top: 0.3rem;
        margin-left: -5px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .course-info {
        grid-template-columns: 1fr;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .price-container {
        padding: 40px 20px;
    }

    .video1 {
        width: 349px;
        height: 196px;
        margin-left: 0px;
    }

    .projeto-img60 {
        width: 100%;
    }

}