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

body {
    font-family: "Montserrat", Sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #1a365d;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7931e;
}

.cta-nav {
    background: #f7931e;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white !important;
}

.cta-nav:hover {
    background: #e8851d;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0AD0AE !important;
}

.highlight {
    color: #f7931e;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.btn-primary {
    background: #f7931e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #e8851d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f7931e;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e0;
}

/* Dashboard Preview */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.dashboard-icon {
    font-size: 3rem;
    color: #f7931e;
    margin-bottom: 1rem;
    display: block;
}

.dashboard-content {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-bar {
    background: linear-gradient(to top, #f7931e, #ffa726);
    border-radius: 4px;
    flex: 1;
    animation: growUp 1s ease-out;
}

.dashboard-label {
    color: #f7931e;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a365d;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931e, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Target Section */
.target-section {
    padding: 80px 0;
    background: white;
}

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

.target-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
}

.target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.target-icon i {
    font-size: 2rem;
    color: white;
}

.target-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.target-card p {
    color: #64748b;
}

/* Learning Section */
.learning-section {
    padding: 80px 0;
    background: #f8fafc;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.learning-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-sizing: unset !important;
}

.learning-card:hover {
    transform: translateY(-5px);
}

.learning-number {
    background: linear-gradient(135deg, #f7931e, #ffa726);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.learning-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.learning-card p {
    color: #64748b;
}

/* Cases Section */
.cases-section {
    padding: 80px 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f7931e;
}

.case-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-logo i {
    font-size: 2rem;
    color: #f7931e;
}

.case-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
}

.case-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* How Section */
.how-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
}

/* Aspirational Section */
.aspirational-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    text-align: center;
}

.aspirational-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.aspirational-cta {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f7931e;
    margin: 2rem 0;
}

/* Signup Section */
.signup-section {
    padding: 80px 0;
    background: #f8fafc;
}

.signup-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.signup-content > p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.signup-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form input,
.form select {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form input:focus,
.form select:focus {
    outline: none;
    border-color: #f7931e;
}

/* Footer */
.footer {
    background: #0f1419;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    margin: 0;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-grid,
    .target-grid,
    .learning-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .learning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .aspirational-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .signup-form {
        padding: 2rem;
    }
    
    .signup-content h2 {
        font-size: 2rem;
    }
}

/* LABEL FORMULÁRIO*/
.mauticform-label {
    text-align: left !important;    
}

/* Com quem section */
/* Teacher Section */
.teacher-section {
    padding: 80px 0;
    background: white;
}

.teacher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.teacher-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}



@media (max-width: 768px) {
    .teacher-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .teacher-photo img {
        max-width: 300px;
        margin: 0 auto;
    }
}
/* Social link na seção do professor */
.teacher-social {
    margin-top: 1.5rem;
}

.teacher-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.teacher-social a i {
    font-size: 1.5rem;
    color: #0A66C2; /* cor oficial do LinkedIn */
    transition: transform 0.3s ease;
}

.teacher-social a:hover {
    color: #0A66C2;
}

.teacher-social a:hover i {
    transform: translateY(-2px);
}


/* CTA PRINCIPAL*/
      .mauticform-button-wrapper{
        text-align: center !important;
      }
      .mauticform-button {
        font-size: 18px !important;
        font-family: "Montserrat", Sans-serif;        
        background-color: #F0861E !important;
        color: #ffffff !important;
        padding: 15px 35px !important;
        text-align: center !important;
        text-decoration: none !important;
        display: inline-block !important;
        font-weight: bold !important;
        border-radius: 4px !important;
        border: none !important;
        cursor: pointer !important;
        transition: background-color 0.3s ease !important;
        margin-top: 20px;
      }
      .mauticform-button:hover {
        background-color: #F19132 !important;
        text-decoration: none !important;
        color: #ffffff !important;
      }

/* HERO com imagem de fundo e overlay mais escuro */
.hero {
  position: relative;
  color: #fff;
  background: url("https://media.treasy.com.br/media/2024/10/pexels-paggiarofrancesco-793088-scaled.jpg")
              center center / cover no-repeat;
}

/* Overlay escuro com leve tom azul */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 0.9) 0%,
    rgba(15, 30, 60, 0.9) 40%,
    rgba(15, 30, 60, 0.95) 100%
  );
  pointer-events: none;
}

/* garante contraste do conteúdo acima do overlay */
.hero .container {
  position: relative;
  z-index: 1;
}

/* melhora a leitura dos textos sobre fundo escuro */
.hero-title {
  color: #0AD0AE !important;
}
.hero-subtitle {
  color: #e8f1f7;
}

/* mobile: reforça a opacidade para telas menores */
@media (max-width: 768px) {
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(10, 20, 40, 0.92) 0%,
      rgba(15, 30, 60, 0.92) 40%,
      rgba(15, 30, 60, 0.96) 100%
    );
  }
}

/* === Seção Comentários YouTube === */
.yt-comments-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}


.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel-track img {
  scroll-snap-align: center;
  flex: 0 0 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  object-fit: contain;
  width: 100%;
  height: auto;
  background: #000;
}

/* Botões de navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}
.carousel-btn:hover { background: rgba(0,0,0,0.6); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (max-width: 768px) {
  .carousel-track img { flex: 0 0 95%; }
}
