/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020308 60%, #000 100%);
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

/* Layout geral */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #070713;
  box-shadow: 0 14px 35px rgba(248, 148, 60, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 148, 60, 0.5);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(249, 115, 22, 0.8);
  color: #fed7aa;
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.08);
}

/* HERO */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-image {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 420px; /* tamanho recomendado da arte PNG sem fundo */
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.9));
}

.hero-content {
  flex: 1.1;
}

/* Logo na HERO */
.hero-logo-wrap {
  margin-bottom: 0.5rem;
}

.hero-logo-large {
  width: 260px;
  height: auto;
  object-fit: contain;
}

.hero-handle-line {
  font-size: 0.9rem;
  color: #a5a5b8;
  margin-bottom: 0.8rem;
}

/* Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f97316;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.hero h1 {
  margin-top: 1rem;
  font-size: 2.3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: #c5c5d6;
  max-width: 580px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

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

.hero-note {
  font-size: 0.85rem;
  color: #a5a5b8;
}

/* Seções genéricas */
.section {
  padding: 3rem 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.section-header p {
  font-size: 0.95rem;
  color: #c4c4d4;
}

/* BENEFÍCIOS */
.benefits {
  background: radial-gradient(circle at top left, #111827 0, #050509 55%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 1.4rem 1.3rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #0b0b12, #05050a);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: #d1d5db;
}

/* TREINAMENTOS & DIFERENCIAIS */
.training {
  background: #050509;
}

.training-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.training-list {
  list-style: none;
}

.training-list li {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.training-list strong {
  color: #fed7aa;
}

.training-highlight {
  display: flex;
  align-items: stretch;
}

.training-card {
  width: 100%;
  padding: 1.6rem 1.4rem;
  border-radius: 1.1rem;
  background: radial-gradient(circle at top, #1f2937 0, #020308 70%);
  border: 1px solid rgba(249, 115, 22, 0.6);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.training-card h3 {
  font-size: 1.1rem;
}

.training-card ul {
  list-style: none;
  font-size: 0.88rem;
  color: #f9fafb;
  margin-bottom: 0.7rem;
}

.training-card ul li {
  margin-bottom: 0.4rem;
}

/* VÍDEOS */
.videos {
  background: #050509;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-frame {
  position: relative;
  width: 100%;
  /* proporção aproximada de vídeo vertical (9:16) */
  padding-top: 177.78%;
  border-radius: 1.1rem;
  overflow: hidden;
  background: radial-gradient(circle at top, #1f2933, #020308);
  border: 1px solid rgba(75, 85, 99, 0.7);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  font-size: 0.85rem;
  color: #d1d5db;
}

/* LOCALIZAÇÃO */
.location {
  background: radial-gradient(circle at bottom, #111827 0, #020308 60%);
}

.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.location-list {
  list-style: none;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.location-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.location-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-size: 1.1rem;
}

.location-cta p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.7rem;
}

.location-map img {
  max-width: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
  object-fit: cover;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #020308;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  gap: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-handle {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-end;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-image img {
    max-width: 360px;
  }

  .benefits-grid,
  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-inner,
  .location-inner {
    grid-template-columns: 1fr;
  }

  .training-highlight {
    margin-top: 0.8rem;
  }

  .location-map {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .benefits-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.3rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    flex-direction: column;
  }
}
