/* ========================================
   RESET GLOBAL
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* ========================================
   HERO SECTION (DESKTOP DEFAULT)
======================================== */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 8%;
  background-image: url("versao\ desktop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.logo {
  width: 50%;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero .sub,
.hero p {
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
}

.hero .sub {
  color: #4b4b4b;
}

.hero .instruction {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
}

/* FORM */
.leadForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.leadForm input {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.leadForm button {
  padding: 16px;
  border: none;
  border-radius: 6px;
  background: #ea580c;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

/* Oculta imagem avulsa no desktop */
.hero-image {
  display: none;
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background-color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
  border-bottom: 2px solid #ea580c;
}

.top-bar p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #ea580c;
}

.top-bar strong {
  color: #000;
  text-transform: uppercase;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
  width: 100%;
  padding: 100px 15%;
  background: #f7f7f7;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image img {
  max-width: 350px;
  border-radius: 12px;
  object-fit: cover;
}

.about-content {
  max-width: 650px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 18px;
}

.about-content strong {
  font-weight: 700;
}

/* STATS */
.stats-container {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: nowrap;
}

.stat-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.stat-card h3 {
  color: #D35400;
  font-size: 24px;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 12px;
  line-height: 1.3;
  color: #666;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
  padding: 80px 15%;
  background: #fff;
  text-align: center;
}

.benefits-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px 25px;
}

.benefit-item:hover {
  border-color: #D35400;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dot {
  width: 8px;
  height: 8px;
  background: #D35400;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.benefits-action {
  margin-top: 50px;
}

.btn-cta {
  display: inline-block;
  background: #D35400;
  color: #fff;
  padding: 18px 60px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #A04000;
}

/* ========================================
   EXTRA SECTIONS (OBJEÇÕES / PROGRAMACAO)
======================================== */
.section-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 15%;
  text-align: center;
}

.section-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Objections */
.objection-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  text-align: left;
}

.objection-card .quote {
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}

/* Programação */
.day-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #f8f9fa;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.day-indicator {
  width: 6px;
  background: #D35400;
}

.day-content {
  padding: 25px 30px;
  text-align: left;
}

.action-area {
  margin-top: 40px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  width: 100%;
  padding: 40px 10px;
  background: #111518;
  text-align: center;
}

.site-footer p {
  color: #d1d1d1;
  font-size: 14px;
  margin-bottom: 6px;
}

/* ========================================
   MEDIA QUERIES
======================================== */

/* TABLET */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 8%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    min-width: 150px;
  }

  .benefits-section {
    padding: 60px 8%;
  }
}

/* HERO (TABLET) */
@media (max-width: 992px) {
  .hero {
    background-image: url("versao\ desktop.webp");
    flex-direction: column;
    text-align: left;
    padding: 40px 6%;
  }

  .hero-image {
    display: block !important;
    margin-top: 30px;
  }

  .hero-image img {
    max-width: 100%;
  }

  .logo {
    width: 60%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 0;
    background-image: none;
  }

  .logo{
    display: none;
  }

  .hero::before {
    content: "";
    width: 100%;
    height: 250px;
    background-image: url("versao\ mobile.webp");
    background-size: cover;
    background-position: 50% ;
    display: block;
  }

    .hero-content {
    width: 100%;
    padding: 20px 6%;
    background: transparent;
    margin-top: 0;
    border-radius: 0;
    text-align: left;
    }


  .hero h1 {
    font-size: 18px;
  }

  .hero p{
    font-size: 16px;
}

  .section-container {
    padding: 60px 8%;
  }
}

/* MOBILE SMALL */
@media (max-width: 576px) {
  .top-bar p {
    font-size: 12px;
  }

  .about-section {
    padding: 50px 5%;
  }

  .about-content h2,
  .benefits-container h2 {
    font-size: 22px;
  }

  .site-footer p {
    font-size: 13px;
  }

  .benefit-item {
    padding: 15px;
  }

  .btn-cta {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-content {
    background: transparent !important;
    border-radius: 0 !important;
  }

  .hero::before {
    background-position: top center !important;
  }
}

/* OVERLAY BLUR */
.popup-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn .25s ease;
}

/* CAIXA PRINCIPAL */
.popup-box {
  width: 92%;
  max-width: 480px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transform: translateY(20px);
  animation: slideUp .35s ease forwards;
}

.popup-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}

/* FORM GROUP */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

/* SELECT ESTILIZADO */
.popup-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 15px;
  color: #111;
  transition: border .2s ease;
}

.popup-form select:focus {
  border-color: #ea580c;
  outline: none;
}

/* BOTÃO */
.btn-submit {
  margin-top: 6px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #ea580c;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: background .25s ease;
}

.btn-submit:hover {
  background: #c94c0a;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.55); }
}

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