* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    /* position: relative; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid #fbbf24;
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fbbf24;
    color: #1e3a8a;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Companies Section */
.companies {
    background: #f3f4f6;
    padding: 60px 20px;
    text-align: center;
}

.companies-title {
    font-size: 0.9rem;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.company-logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b5563;
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Target Audience Section */
.target-audience {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.audience-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24;
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Curriculum Section */
.curriculum {
  padding: 80px 20px;
  background: #f9fafb;
}
.modules-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.module-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid;
  transition: box-shadow .3s ease, transform .3s ease;
}

/* Evita "pular" lateral ao clicar; mantemos leve no hover */
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* Botão do título ocupa largura toda e mostra caret */
.module-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.2;
  padding-right: 4px; /* respirador p/ caret */
}

.module-toggle::after {
  content: "▾";
  font-size: 1.1rem;
  transition: transform .25s ease;
  transform-origin: center;
  opacity: .85;
}
.module-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Área colapsável com animação de altura */
.module-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  will-change: max-height;
}

/* Espaçamento interno quando aberto */
.module-content > ul {
  margin: 14px 0 0 0;
  padding-left: 18px;
}
.module-content li {
  color: #374151;
  line-height: 1.65;
}

/* Bônus (mantém seu estilo) */
.bonus-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.bonus-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.bonus-text {
  color: #4b5563;
  line-height: 1.8;
}

/* Professor Section */
.professor {
    padding: 80px 20px;
    background: white;
}

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

.professor-image{
  position: relative;
  width: 100%;
  /* defina a proporção/altura desejada */
  min-height: 605px;            /* ou use aspect-ratio: 4/5; */
  border-radius: 12px;
  overflow: hidden;

  /* imagem aplicada direto */
  background: url('assets/foto-1.jpg') center center / cover no-repeat;
  /* se quiser um overlay sutil: */
  /* box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); */
}
.mec-badge{
  position: absolute;
  top: clamp(12px, 6vh, 96px);
  right: clamp(8px, 2vw, 24px);
  width: clamp(96px, 12vw, 160px);
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.25));
  pointer-events: none; /* evita clique acidental */
}

/* em telas pequenas, coloca no fluxo abaixo dos botões */
@media (max-width: 640px){
  .mec-badge{
    /* position: static; */
    display: block;
    margin: 12px auto 0;
    width: 128px; /* tamanho mais amigável no mobile */
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.18));
  }
}
.experience-badge{
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.1;
}

.badge-number{ font-size: 28px; font-weight: 800; }
.badge-text{ font-size: 12px; opacity: .9; }

.professor-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: url('assets/foto-1.jpg');
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fbbf24;
    color: #1e3a8a;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

.professor-info .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.professor-description {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials {
    margin: 30px 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #4b5563;
}

.credential-icon {
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #1e3a8a;
    color: white;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 12px;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #fbbf24;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
    left: -70px;
}

.slider-btn.next {
    right: -70px;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.pricing-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4b5563;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.price-container {
    text-align: center;
    margin: 40px 0;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
}

.price-label {
    color: #ef4444;
    font-weight: 600;
    margin: 10px 0;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 10px 0;
}

.installments {
    color: #6b7280;
    font-size: 1.1rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.security-badges span {
    color: #10b981;
    font-weight: 600;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.benefits-row span {
    color: #4b5563;
    font-size: 0.9rem;
}

.limited-seats {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 25px;
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container{
        max-width: 100%;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        /* grid-template-columns: repeat(2, 1fr); */
    }
    
    .professor-content {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        display: none;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .benefits-row {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* === Speakers Section === */
.speakers {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.section-numeral {
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-numeral-divide {
    width: 28px; height: 2px; background: var(--orange, #ff720d);
}
.section-numeral-text span {
    font-weight: 600; color: var(--orange, #ff720d);
}

.heading-wrap .section-title {
    margin: 0;
    text-align: left;
}
.heading-wrap .section-subtitle {
    margin-top: 6px;
    color: #475569;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.speaker-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.speaker-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;            /* mantém proporção mesmo sem imagem carregada */
    object-fit: cover;
    background: #f1f5f9;
}

.speaker-info {
    padding: 14px 16px 18px;
}
.speaker-name {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0 0 6px;
    color: var(--dark-blue, #00054d);
}
.speaker-role {
    font-size: .92rem;
    color: #64748b;
    line-height: 1.35;
}

/* Responsividade */
@media (max-width: 1200px) {
    .speakers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .speakers-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header { grid-template-columns: 1fr; }
    .heading-wrap .section-title, .heading-wrap .section-subtitle { text-align: left; }
}
@media (max-width: 560px) {
    .speakers-grid { grid-template-columns: 1fr; }
}

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
  padding: 72px 0;
  background: #0b0b0c; /* contraste elegante */
  color: #fff;
}
.video-section .section-title { color: #fff; }
.video-section .section-subtitle { color: #c9c9c9; }

.video-wrapper {
  margin-top: 24px;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ===========================
   SPEAKERS - CARROSSEL MOBILE
   =========================== */
/* Desktop mantém grid como está */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Botões: escondidos no desktop */
.speakers-nav {
  display: none;
}

/* Mobile: vira carrossel horizontal com scroll-snap */
@media (max-width: 768px) {
  .speakers-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .speaker-card {
    flex: 0 0 80%;        /* ocupa ~80% da largura da tela */
    scroll-snap-align: center;
    scroll-margin: 16px;
    min-width: 80%;
  }

  .speakers-nav {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 16px;
    position: sticky;   /* fica à vista durante a rolagem */
    top: 0;
    z-index: 2;
  }

  .speakers-btn {
    background: #111;
    color: #fff;
    border: 1px solid #2a2a2a;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    transition: transform .1s ease;
  }
  .speakers-btn:active { transform: scale(0.98); }

  /* Ajustes visuais dos cards no mobile */
  .speaker-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* Acessibilidade e estética consistente */
.speaker-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.speaker-info { padding: 14px 16px; }
.speaker-name { margin: 0 0 4px; font-weight: 700; }
.speaker-role { margin: 0; color: #555; font-size: 0.95rem; }

