/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fundo-principal: #0a0e26;
  --secao-intermediaria: #002a85;
  --botao-primario: #0066ff;
  --botao-secundario: #ffffff;
  --texto-principal: #ffffff;
  --destaque-texto: #1e90ff;
  --alerta: #00ff87;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--fundo-principal);
  color: var(--texto-principal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Garantir que elementos não sejam cortados em mobile */
* {
  box-sizing: border-box;
}

#checkout{
  text-decoration: none; /* remove o sublinhado */
  color: inherit; 
}

#checkout:visited {
  color: inherit; /* evita o roxo depois do clique */
}

#checkout:hover {
  text-decoration: none; /* garante que não volte o sublinhado no hover */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--destaque-texto);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-title {
  font-family: "Onest", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--texto-principal);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  opacity: 0.9;
}

.mec-logo {
  height: clamp(24px, 3vw, 32px);
  width: auto;
  vertical-align: middle;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.mec-logo:hover {
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transform: scale(1.05);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 650px;
  height: 500px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.highlight {
  color: var(--destaque-texto);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--texto-principal);
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  font-size: 1.2rem;
  color: var(--destaque-texto);
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  text-align: center;
}

.cta-button.primary {
  background-color: var(--botao-primario);
  color: var(--texto-principal);
}

.cta-button.primary:hover {
  background-color: var(--texto-principal);
  color: var(--botao-primario);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.cta-button.large {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: linear-gradient(
    135deg,
    var(--secao-intermediaria) 0%,
    var(--fundo-principal) 100%
  );
}

/* Desejo Section with Grid Pattern */
.section.desejo {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--secao-intermediaria) 0%,
    var(--fundo-principal) 100%
  );
}

.section.desejo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(255, 255, 255, 0.08) 4px,
      transparent 4px,
      transparent 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(255, 255, 255, 0.08) 4px,
      transparent 4px,
      transparent 100px
    );
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.section.desejo .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: "Onest", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.section-title i {
  color: var(--destaque-texto);
  margin-right: 0.5rem;
}

.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--alerta);
  border-radius: 2px;
}

.section-description {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Interesse Section */
.interesse-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.interesse-text {
  flex: 1;
  text-align: left;
}

.interesse-text .section-title {
  text-align: left;
}

.interesse-text .section-description {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.interesse-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interesse-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  border: 3px solid var(--destaque-texto);
  box-shadow: 0 15px 35px rgba(30, 144, 255, 0.2);
  transition: all 0.3s ease;
}

.interesse-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(30, 144, 255, 0.3);
  border-color: var(--alerta);
}

/* Desejo Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  width: 100%;
}

.benefit-card,
.bonus-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.benefit-card > *,
.bonus-card > * {
  position: relative;
  z-index: 2;
}

.benefit-card:hover,
.bonus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.benefit-card,
.bonus-card {
  transition: all 0.3s ease;
}

.benefit-card h3,
.bonus-card h3 {
  font-family: "Onest", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--destaque-texto);
}

.benefit-card h3 i,
.bonus-card h3 i {
  margin-right: 0.5rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--alerta);
  font-weight: bold;
}

.bonus-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 135, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--alerta);
}

/* Modules Section */
.modules-section {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.modules-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
}

.modules-section > * {
  position: relative;
  z-index: 2;
}

.modules-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}

.modules-section {
  transition: all 0.3s ease;
}

.modules-header {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modules-header:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.modules-title {
  font-family: "Onest", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modules-title i {
  color: var(--destaque-texto);
}

.modules-arrow {
  font-size: 1.2rem;
  color: var(--destaque-texto);
  transition: transform 0.3s ease;
}

.modules-arrow.rotated {
  transform: rotate(180deg);
}

.modules-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.modules-content.expanded {
  max-height: 3000px;
}

.modules-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.module-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--destaque-texto);
  transition: all 0.3s ease;
  text-align: left;
  justify-content: flex-start;
}

.module-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.module-number {
  background: var(--destaque-texto);
  color: var(--fundo-principal);
  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;
}

.module-info {
  flex: 1;
  text-align: left;
}

.module-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
}

.module-info p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* Instrutor Section */
.instrutores-swiper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.instrutores-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.instrutores-swiper .swiper-slide .instrutor-card {
  width: 100%;
  max-width: 700px;
  min-height: 300px;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 1.5rem;
}

/* Garantir que apenas 1 slide seja visível */
.instrutores-swiper .swiper-wrapper {
  display: flex !important;
}

.instrutores-swiper .swiper-slide {
  flex-shrink: 0 !important;
}

/* Botões de navegação do carrossel de instrutores */
.instrutores-next,
.instrutores-prev {
  background: transparent;
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.instrutores-next:hover,
.instrutores-prev:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.2);
}

.instrutores-next:after,
.instrutores-prev:after {
  font-size: 24px;
  color: var(--destaque-texto);
  font-weight: 900;
}

.instrutores-next {
  right: 10px;
}

.instrutores-prev {
  left: 10px;
}

/* Garantir que as setas dos instrutores sejam sempre visíveis */
.instrutores-next,
.instrutores-prev {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

/* Paginação do carrossel de instrutores */
.instrutores-pagination {
  position: relative;
  margin-top: 2rem;
}

.instrutores-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(30, 144, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.instrutores-pagination .swiper-pagination-bullet-active {
  background: var(--destaque-texto);
  transform: scale(1.3);
}

/* Grid antigo - desabilitado para usar o carrossel */
.instrutores-grid {
  display: none !important;
}

/* Responsividade para instrutores */
@media (max-width: 768px) {
  .instrutores-swiper {
    max-width: 100%;
    padding: 1rem;
  }
  
  .instrutores-swiper .swiper-slide .instrutor-card {
    max-width: 100%;
    height: auto;
    min-height: auto;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  
  .instrutores-swiper .instrutor-photo {
    margin-right: 0;
    margin-bottom: 1rem;
    min-height: auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .instrutores-swiper .instrutor-info {
    min-height: auto;
  }
  
  .instrutores-swiper .instrutor-img {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

.instrutor-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(30, 144, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.instrutor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 144, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.instrutores-swiper .instrutor-photo {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.instrutor-photo {
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.instrutores-swiper .instrutor-img {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--destaque-texto);
  background: linear-gradient(
    135deg,
    var(--secao-intermediaria) 0%,
    var(--destaque-texto) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-principal);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.instrutor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--destaque-texto);
  background: linear-gradient(
    135deg,
    var(--secao-intermediaria) 0%,
    var(--destaque-texto) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-principal);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.instrutor-img.placeholder {
  background: linear-gradient(
    135deg,
    var(--destaque-texto) 0%,
    var(--alerta) 100%
  );
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.instrutor-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.instrutores-swiper .instrutor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.instrutor-info {
  flex: 1;
}



.instrutor-name {
  font-family: "Onest", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--destaque-texto);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}



.name-highlight {
  color: var(--texto-principal);
}

.instrutor-role {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--alerta);
}



.instrutor-handle {
  font-family: "Nunito Sans", sans-serif;
  color: var(--alerta);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.instrutor-handle a {
  color: var(--alerta);
  text-decoration: none;
  transition: all 0.3s ease;
}

.instrutor-handle a:hover {
  color: var(--destaque-texto);
  transform: translateX(3px);
}

.instrutor-handle a i {
  margin-right: 0.3rem;
}

.instrutores-swiper .instrutor-description p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  overflow: visible;
  white-space: normal;
}

.instrutor-description p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}



/* Avaliações Section */
.avaliacoes {
  background: #ffffff !important;
  color: var(--fundo-principal);
}

.avaliacoes-content {
  text-align: center;
}

.avaliacoes .section-title {
  color: var(--fundo-principal);
}

.avaliacoes .section-title i {
  color: var(--botao-primario);
}

.avaliacoes .title-underline::after {
  background: var(--botao-primario);
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.rating-stars {
  display: flex;
  gap: 0.2rem;
}

.rating-stars i {
  color: #ffd700;
  font-size: 1.5rem;
}

.rating-text {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: var(--fundo-principal);
  font-size: 1.1rem;
}

/* Swiper Reviews Styles */
.reviews-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
}

.reviews-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.review-card {
  width: 100%;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--botao-primario);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.02) 0%,
    rgba(0, 102, 255, 0.01) 50%,
    transparent 100%
  );
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
}

.review-card > * {
  position: relative;
  z-index: 2;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-photo {
  flex-shrink: 0;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--botao-primario);
  background: linear-gradient(
    135deg,
    var(--botao-primario) 0%,
    var(--destaque-texto) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.reviewer-img::after {
  content: "Foto";
  display: block;
}

.reviewer-info {
  flex: 1;
  text-align: left;
}

.reviewer-name {
  font-family: "Onest", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fundo-principal);
  margin-bottom: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.3rem;
}

.review-stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-date {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
}

.review-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--fundo-principal);
  text-align: left;
  flex: 1;
}

/* Swiper Navigation Buttons - Desktop */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
  background: #ffffff;
  border: 2px solid var(--botao-primario);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  margin-top: 0;
  top: auto;
  bottom: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
  z-index: 10;
}

.reviews-swiper .swiper-button-next {
  right: 0;
}

.reviews-swiper .swiper-button-prev {
  left: 0;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
  font-size: 20px;
  color: var(--botao-primario);
  font-weight: 900;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
  background: var(--botao-primario);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.25);
}

.reviews-swiper .swiper-button-next:hover:after,
.reviews-swiper .swiper-button-prev:hover:after {
  color: #ffffff;
}

.reviews-swiper .swiper-button-next:active,
.reviews-swiper .swiper-button-prev:active {
  transform: scale(0.95);
}

.reviews-swiper .swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* Swiper Pagination */
.reviews-swiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.reviews-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 102, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--botao-primario);
  transform: scale(1.2);
}

/* Mostrar setas em desktop e tablet */
@media (min-width: 769px) {
  .reviews-swiper .swiper-button-next,
  .reviews-swiper .swiper-button-prev {
    display: flex;
  }
  
  /* Grid de instrutores em desktop */
  .instrutores-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .instrutor-card.main-instructor {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
  }
  
  .main-instructor .instrutor-info {
    text-align: left;
  }
  
  /* Garantir alinhamento correto dos módulos em desktop */
  .module-card {
    flex-direction: row !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  .module-number {
    order: 1;
    flex-shrink: 0;
  }
  
  .module-info {
    order: 2;
    flex: 1;
    text-align: left !important;
  }
  
  .module-info h4,
  .module-info p {
    text-align: left !important;
  }
}

/* Section Divider */
.section-divider {
  padding: 3rem 0;
  background: transparent;
  position: relative;
}

.divider-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 144, 255, 0.3) 20%,
    rgba(30, 144, 255, 0.8) 50%,
    rgba(30, 144, 255, 0.3) 80%,
    transparent 100%
  );
  position: relative;
}

.divider-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 135, 0.2) 20%,
    rgba(0, 255, 135, 0.5) 50%,
    rgba(0, 255, 135, 0.2) 80%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

.divider-icon {
  background: linear-gradient(135deg, var(--destaque-texto) 0%, var(--alerta) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-principal);
  font-size: 1.2rem;
  box-shadow: 
    0 0 20px rgba(30, 144, 255, 0.3),
    0 0 40px rgba(0, 255, 135, 0.2);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.divider-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--destaque-texto), var(--alerta));
  opacity: 0.3;
  z-index: -1;
  animation: rotate 4s linear infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 20px rgba(30, 144, 255, 0.3),
      0 0 40px rgba(0, 255, 135, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 25px rgba(30, 144, 255, 0.5),
      0 0 50px rgba(0, 255, 135, 0.3);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Ação Section */
.section.acao {
  background: linear-gradient(
    135deg,
    var(--fundo-principal) 0%,
    #001a4d 50%,
    var(--secao-intermediaria) 100%
  );
  position: relative;
  overflow: hidden;
}

.section.acao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(30, 144, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 255, 135, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.section.acao::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(30, 144, 255, 0.02) 50%, transparent 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.01) 60px,
      rgba(255, 255, 255, 0.01) 61px,
      transparent 61px,
      transparent 120px
    );
  pointer-events: none;
  z-index: 1;
}

.section.acao .container {
  position: relative;
  z-index: 2;
}

.acao-content {
  text-align: center;
}



.offer-container {
  display: flex;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto;
  align-items: flex-start;
}

.course-cover {
  flex: 1;
  max-width: 400px;
}

.course-cover-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid rgba(30, 144, 255, 0.4);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(30, 144, 255, 0.2);
  background: linear-gradient(
    135deg,
    var(--secao-intermediaria) 0%,
    var(--destaque-texto) 50%,
    var(--fundo-principal) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-principal);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;

}

.course-cover-img:hover {
  transform: scale(1.01);
  border-color: rgba(30, 144, 255, 0.6);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(30, 144, 255, 0.3);
}

.course-cover-img::after {
  content: "Capa do Curso\AEducação Financeira\ADescomplicada";
  white-space: pre;
  display: block;
  line-height: 1.4;
}

.pricing-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(30, 144, 255, 0.4);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(30, 144, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;

}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 144, 255, 0.6);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(30, 144, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.1) 0%,
    rgba(0, 255, 135, 0.05) 50%,
    rgba(30, 144, 255, 0.1) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;

}



.offer-badge {
  font-family: "Onest", sans-serif;
  background: var(--destaque-texto);
  color: var(--texto-principal);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlow 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
}

.pricing-info {
  margin-bottom: 2rem;
  text-align: center;
}

.price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #888;
  margin-bottom: 0.5rem;
}

.price-current {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.price-highlight {
  font-size: 3rem;
  font-weight: 700;
  color: var(--alerta);
}

.price-installments {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.price-highlight-small {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--destaque-texto);
}

.includes {
  margin: 2rem 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.includes h4 {
  font-family: "Onest", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--destaque-texto);
  font-weight: 700;
}

.includes h4 i {
  margin-right: 0.5rem;
}

.includes ul {
  list-style: none;
}

.includes li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
}

.includes li i {
  color: var(--alerta);
  margin-right: 0.8rem;
  font-size: 1rem;
  width: 16px;
}

.cta-subtitle {
  font-family: "Nunito Sans", sans-serif;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #bbb;
  text-align: center;
}

.guarantee {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  border: 1px solid rgba(30, 144, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.guarantee i {
  color: var(--alerta);
  font-size: 1rem;
}

.guarantee-text {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
}


/* Lead Capture Section */
.section.lead-capture {
  padding: 4rem 0; /* Altura otimizada para layout horizontal */
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("assets/background-form.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Efeito parallax */
  position: relative;
  overflow: hidden;
}

.section.lead-capture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 135, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.section.lead-capture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.01) 80px,
      rgba(255, 255, 255, 0.01) 81px,
      transparent 81px,
      transparent 160px
    );
  pointer-events: none;
  z-index: 1;
}

.section.lead-capture .container {
  position: relative;
  z-index: 2;
}

.lead-form-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lead-content {
  flex: 1;
  text-align: left;
}

.lead-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.lead-content .section-description {
  text-align: left;
  margin-bottom: 0;
  max-width: none;
}

.lead-form-wrapper {
  flex: 1;
  max-width: 500px;
}

.lead-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(30, 144, 255, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(30, 144, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 0;
}

.lead-form:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 144, 255, 0.5);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(30, 144, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lead-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.08) 0%,
    rgba(0, 255, 135, 0.04) 50%,
    rgba(30, 144, 255, 0.08) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--texto-principal);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.form-input:focus {
  outline: none;
  border-color: var(--destaque-texto);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(30, 144, 255, 0.2),
    0 0 15px rgba(30, 144, 255, 0.3);
  transform: translateY(-1px);
}

.form-input:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.form-input:valid {
  border-color: var(--alerta);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(0, 255, 135, 0.2);
}

/* Animação de foco nos inputs */
.form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--destaque-texto), var(--alerta));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.form-input:focus + .form-group::after,
.form-group:focus-within::after {
  width: 100%;
}

/* Estilo especial para o botão do formulário */
.lead-form .cta-button {
  width: 100%;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--botao-primario);
  border: none;
  border-radius: 12px;
  color: var(--texto-principal);
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.lead-form .cta-button:hover {
  background-color: var(--texto-principal);
  color: var(--botao-primario);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.lead-form .cta-button:active {
  transform: translateY(-1px);
}

.lead-form .cta-button i {
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

/* Responsividade para o formulário */
@media (max-width: 768px) {
  .section.lead-capture {
    padding: 2rem 0;
  }
  
  .lead-form-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .lead-content {
    text-align: center;
  }
  
  .lead-content .section-title {
    text-align: center;
  }
  
  .lead-content .section-description {
    text-align: center;
  }
  
  .lead-form-wrapper {
    max-width: 100%;
  }
  
  .lead-form {
    padding: 1.5rem 1.2rem;
    margin: 1rem 0;
  }
  
  .form-input {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .lead-form .cta-button {
    padding: 1.3rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section.lead-capture {
    padding: 1.5rem 0;
    background-attachment: scroll; /* Desabilitar parallax em mobile para melhor performance */
  }
  
  .lead-form-container {
    gap: 1.5rem;
  }
  
  .lead-form {
    padding: 1.2rem 1rem;
  }
  
  .form-input {
    padding: 0.9rem 1rem;
  }
  
  .lead-form .cta-button {
    padding: 1.2rem 1rem;
    font-size: 0.85rem;
  }
}

/* Footer */
.footer {
  background-color: var(--fundo-principal);
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.footer-content {
  text-align: center;
}

.footer .logo {
  justify-content: center;
  margin-bottom: 1rem;
}

.footer .logo-img {
  height: 60px;
  width: auto;
}

.footer p {
  margin-top: 1rem;
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes chatbotNotification {
  0%, 70%, 100% {
    transform: scale(1) rotate(0deg);
  }
  10% {
    transform: scale(1.05) rotate(-3deg);
  }
  20% {
    transform: scale(1.05) rotate(3deg);
  }
  30% {
    transform: scale(1.05) rotate(-3deg);
  }
  40% {
    transform: scale(1.05) rotate(3deg);
  }
  50% {
    transform: scale(1.05) rotate(-2deg);
  }
  60% {
    transform: scale(1.05) rotate(2deg);
  }
}

@keyframes chatbotPulseWave {
  0%, 70%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  15% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.15;
  }
  45% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  /* Hero responsivo */
  .hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 80px 20px 60px;
    min-height: 100vh;
    justify-content: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    max-width: 280px;
    height: 220px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .hero-subtitle {
    justify-content: center;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  
  .mec-logo {
    height: clamp(20px, 4vw, 28px);
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    max-width: 280px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .header {
    padding: 1rem 0;
  }
  
  .header .logo-img {
    height: 50px;
  }

  /* Grid de instrutores em mobile */
  .instrutores-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instrutor-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }
  
  .instrutor-card.main-instructor {
    grid-column: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .main-instructor .instrutor-info {
    text-align: center;
  }

  .instrutor-img {
    width: 100px;
    height: 100px;
  }
  
  .main-instructor .instrutor-img {
    width: 120px;
    height: 120px;
  }

  .instrutor-name {
    font-size: 1.2rem;
  }
  
  .main-instructor .instrutor-name {
    font-size: 1.6rem;
  }
  .container {
    padding: 0 15px;
  }
  
  .logo-img {
    height: 50px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .interesse-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .interesse-text {
    text-align: center;
  }

  .interesse-text .section-title {
    text-align: center;
  }

  .interesse-text .section-description {
    text-align: center;
  }

  .interesse-img {
    max-width: 100%;
  }

  .section-divider {
    padding: 2rem 0;
  }

  .divider-content {
    gap: 1rem;
    max-width: 300px;
  }

  .divider-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }



  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
  }

  .hero-text {
    text-align: center;
    order: 2;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    height: 220px;
    max-width: 100%;
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
      url("assets/hero-mobile.png");
    background-attachment: scroll;
  }

  .scroll-indicator {
    display: none;
  }

  .scroll-text {
    font-size: 0.75rem;
  }

  .scroll-arrow i {
    font-size: 0.9rem;
  }

  .section.desejo::before {
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.06) 2px,
        rgba(255, 255, 255, 0.06) 4px,
        transparent 4px,
        transparent 80px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.06) 2px,
        rgba(255, 255, 255, 0.06) 4px,
        transparent 4px,
        transparent 80px
      );
  }

  .section {
    padding: 3rem 0;
    overflow: visible;
  }

  .benefit-card,
  .bonus-card {
    padding: 1.5rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .offer-container {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    overflow: visible;
  }

  .course-cover {
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }

  .course-cover-img {
    height: auto;
    width: 100%;
    max-height: none;
    object-fit: contain;
  }

  .pricing-card {
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .price-highlight {
    font-size: 2.5rem;
  }

  .includes {
    margin: 1.5rem 0;
  }

  .includes li {
    font-size: 0.9rem;
  }

  .cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }

  .guarantee {
    margin-top: 1rem;
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  /* Grid de instrutores em tablet */
  .instrutores-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .instrutor-card.main-instructor {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
  }
  
  .main-instructor .instrutor-info {
    text-align: left;
  }

  .instrutor-img {
    width: 100px;
    height: 100px;
  }
  
  .main-instructor .instrutor-img {
    width: 120px;
    height: 120px;
  }

  .instrutor-name {
    font-size: 1.2rem;
  }
  
  .main-instructor .instrutor-name {
    font-size: 1.6rem;
  }

  .instrutor-description p {
    font-size: 0.9rem;
  }
  
  .main-instructor .instrutor-description p {
    font-size: 1rem;
  }

  .modules-grid {
    padding: 1.5rem;
  }

  .module-card {
    padding: 1rem;
    gap: 1rem;
  }

  .module-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .module-info h4 {
    font-size: 1.1rem;
  }

  .module-info p {
    font-size: 0.9rem;
  }

  .modules-header {
    padding: 1rem 1.5rem;
  }

  .modules-title {
    font-size: 1.3rem;
  }

  .chatbot-container {
    bottom: 15px;
    right: 15px;
  }

  .chatbot-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .chatbot-window {
    width: calc(100vw - 30px);
    height: 70vh;
    bottom: 80px;
    right: 15px;
  }

  .chatbot-messages {
    height: calc(70vh - 140px);
  }

  .option-button {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  /* Scroll indicator mantido visível em mobile */
}

/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chatbot-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--botao-primario) 0%, var(--destaque-texto) 100%);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: chatbotNotification 3s ease-in-out infinite;
}

.chatbot-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--botao-primario) 0%, var(--destaque-texto) 100%);
  transform: translate(-50%, -50%);
  animation: chatbotPulseWave 6s ease-out infinite;
  z-index: -1;
  opacity: 0.7;
}

.chatbot-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--botao-primario) 0%, var(--destaque-texto) 100%);
  transform: translate(-50%, -50%);
  animation: chatbotPulseWave 6s ease-out infinite 3s;
  z-index: -1;
  opacity: 0.4;
}

.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
  animation-play-state: paused;
}

.chatbot-button:hover::before,
.chatbot-button:hover::after {
  animation-play-state: paused;
}

.chatbot-notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid white;
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
  overflow: hidden;
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--botao-primario) 0%, var(--destaque-texto) 100%);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chatbot-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chatbot-title h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.chatbot-title span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.message-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--botao-primario) 0%, var(--destaque-texto) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.message-content {
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.message-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--fundo-principal);
}

.chatbot-options {
  padding: 1rem;
  background: white;
  border-top: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.option-button {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: var(--fundo-principal);
}

.option-button:hover {
  background: var(--botao-primario);
  color: white;
  border-color: var(--botao-primario);
  transform: translateX(5px);
}

.typing-indicator {
  margin-bottom: 1rem;
}

.typing-dots {
  display: flex;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}ight {
    font-size: 2.5rem;
  }

  .review-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .reviewer-img {
    width: 50px;
    height: 50px;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  /* Swiper responsivo para tablets - manter setas menores */
  .reviews-swiper .swiper-button-next,
  .reviews-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    margin-top: 0;
    top: auto;
    bottom: 0;
  }

  .reviews-swiper .swiper-button-next {
    right: 0;
  }

  .reviews-swiper .swiper-button-prev {
    left: 0;
  }

  .reviews-swiper .swiper-button-next:after,
  .reviews-swiper .swiper-button-prev:after {
    font-size: 16px;
  }

  .review-card {
    padding: 1.5rem;
  }

  .modules-header {
    padding: 1rem 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .modules-section {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .modules-title {
    font-size: 1.3rem;
  }

  .modules-grid {
    padding: 1.5rem;
    gap: 1rem;
  }

  .modules-content.expanded {
    max-height: none;
    height: auto;
  }

  .module-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .module-number {
    margin: 0 auto;
  }

  .instrutores-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instrutor-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1rem;
  }
  
  .instrutor-card.main-instructor {
    grid-column: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .main-instructor .instrutor-info {
    text-align: center;
  }

  .instrutor-img {
    width: 80px;
    height: 80px;
  }
  
  .main-instructor .instrutor-img {
    width: 100px;
    height: 100px;
  }

  .instrutor-name {
    font-size: 1rem;
  }
  
  .main-instructor .instrutor-name {
    font-size: 1.3rem;
  }
}

/* Estilos para telas muito pequenas */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
  }
  
  .hero-content {
    gap: 1.2rem;
    padding: 70px 15px 50px;
    min-height: 100vh;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem);
    margin-bottom: 0.8rem;
  }

  .hero-image {
    max-width: 250px;
    height: 200px;
    margin-bottom: 0.5rem;
  }

  .hero-img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  }

  .cta-button {
    padding: 0.8rem 1.4rem;
    font-size: 0.8rem;
    max-width: 260px;
  }
  
  .cta-button.large {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .benefit-card,
  .bonus-card {
    padding: 1rem;
    margin: 0 0 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .pricing-card {
    padding: 1rem;
    margin: 0 0 1rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .modules-section {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .modules-header {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.8rem 1rem;
  }

  .modules-title {
    font-size: 1.2rem;
  }

  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
      url("assets/hero-mobile.png");
    background-attachment: scroll;
  }

  .benefits-grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .offer-container {
    gap: 1.5rem;
  }

  .review-card {
    padding: 1rem;
    margin: 0 0.3rem;
  }

  .reviewer-img {
    width: 45px;
    height: 45px;
  }

  .reviewer-name {
    font-size: 0.9rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  /* Swiper responsivo para mobile - ocultar setas */
  .reviews-swiper .swiper-button-next,
  .reviews-swiper .swiper-button-prev {
    display: none;
  }

  .reviews-swiper {
    padding: 1rem 0;
  }

  .google-rating {
    margin-bottom: 2rem;
  }

  .section.desejo::before {
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.05) 1px,
        rgba(255, 255, 255, 0.05) 3px,
        transparent 3px,
        transparent 60px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.05) 1px,
        rgba(255, 255, 255, 0.05) 3px,
        transparent 3px,
        transparent 60px
      );
  }

  .modules-content.expanded {
    max-height: none;
    height: auto;
  }

  .modules-grid {
    padding: 1rem;
    gap: 0.8rem;
  }
}
/* Media query específica para dispositivos muito pequenos como iPhone SE (375x667) */
@media (max-width: 375px) and (max-height: 667px) {
  .header {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 50px;
  }

  .hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .hero-content {
    gap: 1rem;
    padding: 60px 10px 40px;
    min-height: 100vh;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.4rem, 4.5vw, 1.7rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-image {
    height: 100px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .hero-img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  }

  .cta-button {
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  /* Ocultar scroll indicator no iPhone SE */
  .scroll-indicator {
    display: none;
  }
}

/* Media query adicional para dispositivos ainda menores ou com orientação landscape */
@media (max-width: 375px) and (max-height: 600px) {
  .header {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 45px;
  }

  .hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .hero-content {
    gap: 0.8rem;
    padding: 50px 10px 30px;
    min-height: 100vh;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 0.5rem;
  }

  .hero-image {
    height: 90px;
    margin-bottom: 0.3rem;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.3rem;
  }

  /* Ocultar scroll indicator apenas em dispositivos muito pequenos */
  .scroll-indicator {
    display: none;
  }
}
/* Input with Icon Styles */
.input-with-icon {
  position: relative;
  display: block;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-input.with-icon {
  padding-left: 3.2rem;
}

.input-with-icon:hover .input-icon {
  color: rgba(255, 255, 255, 1);
}

.input-with-icon .form-input:focus ~ .input-icon {
  color: var(--destaque-texto);
}

.input-with-icon .form-input:valid ~ .input-icon {
  color: var(--alerta);
}
/* Nor
malizar todos os cards dos instrutores - remover diferenças do main-instructor */
.instrutor-card.main-instructor,
.instrutor-card {
  flex-direction: column !important;
  text-align: center !important;
  align-items: center !important;
  padding: 2rem !important;
  gap: 0 !important;
}

.main-instructor .instrutor-info,
.instrutor-info {
  text-align: center !important;
  margin-top: 1rem !important;
}

/* Estilos específicos para o Swiper de instrutores - overrides finais */
.instrutores-swiper .instrutor-img {
  width: 200px !important;
  height: 200px !important;
  margin: 0 auto !important;
  display: block !important;
}

.instrutores-swiper .instrutor-photo {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
}

.instrutores-swiper .instrutor-card {
  flex-direction: column !important;
  text-align: center !important;
  align-items: center !important;
}

.instrutores-swiper .instrutor-info {
  text-align: center !important;
  align-items: center !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .instrutores-swiper .instrutor-img {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

.main-instructor .instrutor-name,
.instrutor-name {
  font-size: 1.4rem !important;
}

.main-instructor .instrutor-role,
.instrutor-role {
  font-size: 0.9rem !important;
}

.main-instructor .instrutor-description p,
.instrutor-description p {
  font-size: 0.95rem !important;
}

.main-instructor .instrutor-photo,
.instrutor-photo {
  margin-bottom: 1rem !important;
}

/* Remover badge do instrutor principal */
.instructor-badge {
  display: none !important;
}

/* Setas do carrossel de instrutores - overrides finais */
.instrutores-swiper .swiper-button-next,
.instrutores-swiper .swiper-button-prev {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  cursor: pointer !important;
}

.instrutores-swiper .swiper-button-next:after,
.instrutores-swiper .swiper-button-prev:after {
  font-size: 24px !important;
  color: var(--destaque-texto) !important;
  font-weight: 900 !important;
}

.instrutores-swiper .swiper-button-next:hover,
.instrutores-swiper .swiper-button-prev:hover {
  background: transparent !important;
  transform: translateY(-50%) scale(1.2) !important;
}

.instrutores-swiper .swiper-button-next {
  right: 10px !important;
}

.instrutores-swiper .swiper-button-prev {
  left: 10px !important;
}