/* css/style.css - tema preto, responsivo, rápido */
:root{
  --bg:#000;
  --text:#f5f5f5;
  --muted:#bdbdbd;
  --accent:#ffb400;
  --max-width:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
  display:flautoex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* Hero */
.hero{
  text-align:center;
  padding:24px;
}
.title{
  margin:0;
  font-size:clamp(20px,4vw,36px);
  letter-spacing:0.2px;
}
.subtitle{
  margin:8px 0 0 0;
  color:var(--muted);
  font-size:14px;
}

/* Video */
.video-section{
  display:flex;
  justify-content:center;
  padding:0 12px;
}
.video-wrapper{
  width:100%;
  max-width:900px;
  aspect-ratio:16/9;
  background:#111;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.6);
}
.video{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Sales block */
.sales{
  text-align:center;
  padding:12px;
  display:flex;
  flex-direction:column; /* sempre em coluna */
  align-items:center;
  gap:12px;
}
.price{
  display:flex;
  align-items:baseline;
  gap:4px;
}
.currency{font-size:18px;color:var(--muted)}
.amount{font-size:42px;font-weight:700}
.per{font-size:16px;color:var(--muted)}
.btn {
  appearance: none;
  border: 0;
  background: linear-gradient(90deg, var(--accent), #ff9000);
  color: #061014;
  padding: 20px 100px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  
  /* Efeito pulsando */
  animation: pulse 1.5s infinite;
}

.btn:active {
  transform: translateY(1px);
}

.note {
  color: var(--muted);
  font-size: 13px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 144, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
}

/* Footer */
.footer{
  text-align:center;
  padding:20px 10px;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid rgba(255,255,255,0.03);
}

.benefits {
  background: #111;
  padding: 32px 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.benefits h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.benefits-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.benefit-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.benefit-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.benefit-item h3 {
  margin: 8px 0;
  font-size: 1.2rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsivo */
@media (min-width: 700px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.podcast-section {
  background-color: #000;
  padding: 60px 20px;
  color: #fff;
}

.podcast-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.podcast-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
}

.podcast-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.podcast-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .podcast-container {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

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

.footer-container a {
  color: #ff9000;
  text-decoration: none;
}

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

.social-link i {
  margin-right: 6px;
}

.footer-email {
  margin-top: 8px;
}

.section-inscricao-fechada {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container-inscricao-fechada {
  max-width: 600px;
  margin: 0 auto;
}

.section-inscricao-fechada h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-inscricao-fechada p {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25d366; /* Cor verde do WhatsApp */
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #77ef67; /* Verde mais escuro no hover */
}