/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3D8B40;
    --primary-blue-dark: #2E7D32;
    --secondary-pink: #E67322;
    --secondary-pink-light: #F5A623;
    --cyan: #46C8C8;
    --black: #121212;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-400: #9E9E9E;
    --gray-600: #424242;
    --whatsapp-green: #25D366;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georama', 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 48px;
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--primary-blue);
}

.btn-inscrevase {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-inscrevase:hover {
    background: var(--primary-blue-dark);
}

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(90deg, var(--secondary-pink) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 12px 20px;
    margin-top: 64px;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.countdown-text {
    font-size: 14px;
}

.countdown-highlight {
    font-weight: 700;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-weight: 700;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 36px;
    text-align: center;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 2px;
}

.countdown-separator {
    font-weight: 700;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--white);
    margin-left: 15%;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-graduacao {
    background: var(--primary-blue);
}

.badge-presencial {
    background: var(--cyan);
    color: var(--black);
}

.badge-mec {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-info {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.hero-info-large {
    font-size: 20px;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.btn-hero {
    font-size: 18px;
    padding: 16px 40px;
}

/* Sobre o Curso */
.sobre-curso {
    padding: 80px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--black);
}

.sobre-description {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.sobre-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sobre-galeria {
    width: 100%;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.galeria-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.galeria-grid img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.galeria-cta {
    text-align: center;
    margin-top: 24px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .galeria-grid img {
        height: 140px;
    }
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card-destaque {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-destaque:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(20, 75, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background: var(--gray-100);
}

.depoimentos .section-title {
    text-align: center;
}

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

.depoimento-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    background: #f5f5f5;
}

.depoimento-video video {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
}

.video-play-btn svg {
    margin-left: 5px;
}

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

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

/* Perfil do Profissional */
.perfil-profissional {
    padding: 80px 0;
    background: var(--primary-blue);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    text-align: center;
}

.perfil-profissional .section-title {
    text-align: center;
    color: var(--white);
}

.perfil-profissional .section-subtitle {
    color: var(--white);
}

.perfil-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.perfil-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-pink);
}

.perfil-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.perfil-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Áreas de Atuação - Carousel */
.areas-atuacao {
    padding: 80px 0;
    background: var(--white);
}

.areas-atuacao .section-title,
.areas-atuacao .section-subtitle {
    text-align: center;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 24px;
}

.carousel-track-container {
    overflow-x: hidden;
    overflow-y: visible;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: calc(50% - 12px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slide-content {
    padding: 20px;
    min-height: auto;
}

.slide-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.slide-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    overflow: visible;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.carousel-btn:hover svg {
    stroke: var(--white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-blue);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Grade Curricular */
.grade-curricular {
    padding: 80px 0;
    background: var(--white);
}

.grade-curricular .section-title {
    text-align: center;
}

.grade-curricular .section-subtitle {
    text-align: center;
    margin-bottom: 32px;
}

.grade-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 12px;
}

.grade-info-item {
    text-align: center;
}

.grade-info-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.grade-info-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

.grade-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.grade-tab {
    padding: 10px 20px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s;
}

.grade-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.grade-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.grade-semester {
    display: none;
}

.grade-semester.active {
    display: block;
}

.disciplina {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    margin-bottom: 8px;
}

.disciplina-nome {
    font-size: 15px;
    color: var(--black);
}

.disciplina-horas {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(20, 75, 200, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

/* CTA Final */
.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-pink) 100%);
    text-align: center;
    color: var(--white);
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.btn-large {
    font-size: 18px;
    padding: 18px 48px;
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 36px;
}

.footer-contact {
    display: flex;
    gap: 24px;
}

.footer-phone,
.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s;
}

.footer-phone:hover,
.footer-whatsapp:hover {
    color: var(--cyan);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-emec img {
    height: 40px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 450px;
        padding: 40px 20px;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-info {
        flex-direction: column;
        gap: 12px;
    }

    .countdown-container {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

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

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Card de Preço Lateral */
.price-card-sidebar {
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 320px;
}

.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

.price-card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
    display: inline-block;
}

.price-card-badge {
    display: inline-block;
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.price-card-duration {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.price-card-duration svg {
    margin-top: 2px;
    flex-shrink: 0;
}

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

.duration-value {
    display: block;
    font-size: 15px;
    color: var(--black);
}

.price-card-price {
    margin-bottom: 20px;
}

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

.price-value {
    font-size: 52px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Georama', sans-serif;
    white-space: nowrap;
}

.discount-text {
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.price-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-600);
}

.btn-price-card {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-bottom: 16px;
}

.price-card-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.4;
}

/* Responsivo - Card lateral em tablet */
@media (max-width: 1200px) {
    .price-card-sidebar {
        display: none;
    }
}

/* Mobile CTA fixo no rodapé */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-cta-price {
    flex: 1;
}

.mobile-cta-price .price-label {
    font-size: 11px;
    margin-bottom: 0;
}

.mobile-cta-price .price-value {
    font-size: 28px;
}

.mobile-cta-price .price-period {
    font-size: 12px;
}

.mobile-cta .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

/* Responsivo completo para mobile */
@media (max-width: 768px) {
    /* Mostrar CTA mobile fixo */
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    /* Header mobile */
    .header-container {
        padding: 0 16px;
    }

    .logo img {
        height: 28px;
    }

    .btn-inscrevase {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Countdown */
    .countdown-banner {
        padding: 10px 16px;
    }

    .countdown-text {
        font-size: 12px;
    }

    .countdown-highlight {
        font-size: 14px;
        padding: 3px 10px;
    }

    .countdown-value {
        font-size: 14px;
        padding: 3px 6px;
        min-width: 28px;
    }

    .countdown-label {
        font-size: 8px;
    }

    /* Hero */
    .hero {
        min-height: 400px;
        padding: 30px 16px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-info {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Seções */
    .sobre-curso,
    .perfil-profissional,
    .areas-atuacao,
    .faq,
    .grade-curricular {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Sobre o curso */
    .sobre-content {
        gap: 24px;
    }

    .sobre-description {
        font-size: 15px;
    }

    .sobre-image {
        order: -1;
    }

    .sobre-image img {
        border-radius: 8px;
    }

    /* Cards */
    .cards-container {
        gap: 16px;
    }

    .card-destaque {
        padding: 24px 20px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 13px;
    }

    /* Perfil cards */
    .perfil-cards {
        gap: 12px;
    }

    .perfil-card {
        padding: 20px;
    }

    .perfil-card h3 {
        font-size: 16px;
    }

    .perfil-card p {
        font-size: 13px;
    }

    /* Carousel */
    .carousel-container {
        margin: 24px 0 16px;
        gap: 8px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-track-container {
        overflow: hidden;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-slide {
        min-width: 100%;
        box-sizing: border-box;
    }

    .carousel-slide img {
        height: 180px;
        flex-shrink: 0;
    }

    .slide-content {
        padding: 16px 12px;
        min-height: auto;
    }

    .slide-content h3 {
        font-size: 15px;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .slide-content p {
        font-size: 13px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    /* FAQ */
    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Grade curricular */
    .grade-info {
        gap: 20px;
        padding: 20px 16px;
    }

    .grade-info-value {
        font-size: 16px;
    }

    .grade-tabs {
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .grade-tab {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .disciplina {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .disciplina-nome {
        font-size: 13px;
    }

    .disciplina-horas {
        font-size: 12px;
        padding: 3px 10px;
    }

    /* CTA Final */
    .cta-final {
        padding: 50px 16px;
    }

    .cta-final h2 {
        font-size: 24px;
    }

    .cta-final p {
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 100px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-social {
        gap: 12px;
        padding: 24px 0;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-value {
        font-size: 12px;
        padding: 2px 4px;
        min-width: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .mobile-cta-content {
        flex-direction: column;
        gap: 8px;
    }

    .mobile-cta-price {
        text-align: center;
    }

    .mobile-cta .btn-primary {
        width: 100%;
    }
}
