/* ============================================
   MENTORIAS COM ANDRÉ PANNOS - STYLES
   ============================================ */

:root {
  --bg-dark: #0c1a2e;
  --bg-card: #12283f;
  --bg-card-border: #1a3654;
  --cyan: #00d4ff;
  --cyan-dark: #00b8e6;
  --orange: #f5923a;
  --orange-dark: #e07e28;
  --text-white: #ffffff;
  --text-light: #c8d6e5;
  --text-muted: #8899aa;
  --pricing-bg: #7ec8e3;
  --pricing-bg-light: #a8ddf0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 28px 24px;
  position: relative;
  z-index: 10;
}

.nav-link {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding-bottom: 60px;
}

.hero-bg-clapper {
  position: absolute;
  top: -40px;
  left: -80px;
  width: 560px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-12deg);
}

.hero-bg-clapper img {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 26, 46, 0.95) 40%, rgba(12, 26, 46, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 40px;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-text p strong {
  color: var(--text-white);
  font-weight: 600;
}

.btn-saiba-mais {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.btn-saiba-mais:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
}

.hero-video {
  flex-shrink: 0;
  width: 400px;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   PLANOS DE MENTORIA
   ============================================ */

.planos {
  padding: 80px 0 60px;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

.plano-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
}

.plano-card-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
}

.plano-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plano-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 48px;
}

.btn-ver-detalhes {
  display: inline-block;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.btn-ver-detalhes:hover {
  background: var(--cyan);
  color: #000;
}

/* ============================================
   PLAN DETAIL SECTIONS
   ============================================ */

.plano-detail {
  padding: 40px 0;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
}

.detail-left {
  flex: 0 0 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.detail-image img {
  width: 100%;
  height: auto;
}

.detail-description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.detail-specs {
  list-style: none;
  padding: 0;
}

.detail-specs li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 3px 0;
  position: relative;
  padding-left: 14px;
}

.detail-specs li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.detail-right {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(26, 54, 84, 0.3) 0%, rgba(18, 40, 63, 0.6) 100%);
  border-left: 1px solid var(--bg-card-border);
}

.detail-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
}

.detail-info h3:first-child {
  margin-top: 0;
}

.detail-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.btn-contratar {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px 32px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 24px;
  align-self: flex-start;
}

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

/* ============================================
   ACCORDION (Cronograma)
   ============================================ */

.cronograma-accordion {
  margin-top: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-toggle:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-arrow {
  transition: transform 0.3s;
  color: var(--text-light);
}

.accordion-toggle[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open {
  max-height: 2000px;
}

.cronograma-sessao {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cronograma-sessao h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-white);
}

.sessao-item {
  margin-bottom: 14px;
  padding-left: 16px;
  position: relative;
}

.sessao-item::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: bold;
}

.sessao-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 4px;
}

.sessao-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos {
  padding: 80px 0;
}

.depoimentos .section-title {
  font-size: 2rem;
}

.depoimentos-grid {
  columns: 4;
  column-gap: 16px;
  margin-top: 16px;
}

.depoimento-col {
  display: contents;
}

.depoimento-col-bottom {
  display: contents;
}

.depoimento-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
}

.depoimento-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.video-item {
  position: relative;
}

.play-btn-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}

.play-btn-small:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  background: linear-gradient(180deg, var(--pricing-bg) 0%, var(--pricing-bg-light) 100%);
  padding: 80px 0 60px;
}

.pricing-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 3px solid var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(245, 146, 58, 0.2);
}

.pricing-card-featured:hover {
  transform: translateY(-12px);
}

.pricing-card-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-card-img.featured-img {
  border: 3px solid var(--orange);
  border-radius: 16px;
  width: 110px;
  height: 110px;
}

.pricing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.price-installment {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  margin-right: 4px;
  align-self: center;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  align-self: flex-start;
  margin-top: 8px;
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.price-cents {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  align-self: flex-start;
  margin-top: 8px;
}

.price-cash {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 20px;
}

.pricing-includes {
  text-align: left;
  margin-bottom: 20px;
  padding: 0 8px;
}

.includes-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.includes-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.includes-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #000;
}

.includes-list {
  list-style: none;
  padding-left: 18px;
  margin-top: 6px;
}

.includes-list li {
  font-size: 0.8rem;
  color: #555;
  padding: 2px 0;
  position: relative;
  padding-left: 12px;
}

.includes-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #888;
}

.pricing-ideal {
  background: var(--pricing-bg-light);
  border-radius: 20px;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.ideal-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
}

.pricing-ideal p {
  font-size: 0.78rem;
  color: #333;
  line-height: 1.4;
  margin-top: 6px;
}

.btn-contratar-pricing {
  display: block;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-contratar-pricing:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-featured {
  background: var(--orange);
  color: #fff;
}

.btn-featured:hover {
  background: var(--orange-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-hashtag {
  font-size: 2rem;
  font-weight: 900;
  color: #000;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 960px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-video {
    width: 100%;
    max-width: 440px;
  }

  .detail-card {
    flex-direction: column;
  }

  .detail-left {
    flex: none;
    padding: 24px;
  }

  .detail-right {
    border-left: none;
    border-top: 1px solid var(--bg-card-border);
    padding: 24px;
  }

  .depoimentos-grid {
    columns: 3;
  }

  .pricing-cards {
    gap: 20px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .nav {
    gap: 32px;
    padding: 20px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-bg-clapper {
    width: 300px;
    top: -30px;
    left: -80px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-video {
    max-width: 100%;
  }

  .planos {
    padding: 60px 0 40px;
  }

  .planos-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin: 0 auto;
  }

  .plano-card-img {
    width: 140px;
    height: 140px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .detail-left {
    flex: none;
    padding: 20px;
  }

  .detail-right {
    padding: 20px;
  }

  .btn-contratar {
    align-self: stretch;
    text-align: center;
  }

  .cronograma-sessao {
    padding: 12px 16px;
  }

  .accordion-toggle {
    padding: 14px 16px;
  }

  .depoimentos-grid {
    columns: 2;
    column-gap: 12px;
  }

  .pricing {
    padding: 60px 0 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .pricing-title {
    font-size: 1.5rem;
  }

  .footer-hashtag {
    font-size: 1.6rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
