/* Header por cima do hero */
.site-header{
  position:absolute; top:0; left:0; right:0;
  z-index:999; background:transparent;
}

.nav{
  display:flex; align-items:center; justify-content:center; /* centralizado */
  min-height: 160px;              /* mais respiro no topo */
  padding: 0 16px;
}

/* Logo maior */
.logo{
  display:block;
  height: 140px;                  /* logo bem maior */
  width:auto;
}

/* Hero com respiro pra não ficar por baixo do header */
.hero-section{ position:relative; padding-top: 192px; }

@media (max-width:1024px){
  .nav{ min-height:136px; }
  .logo{ height: 112px; }
  .hero-section{ padding-top: 168px; }
}
@media (max-width:768px){
  .nav{ min-height:110px; }
  .logo{ height: 84px; }
  .hero-section{ padding-top: 140px; }
}

/* ===== Mobile (<= 768px) — reduzir gap entre logo e headline ===== */
@media (max-width:768px){
  /* mantém a logo grande que você curtiu */
  .nav{ min-height: 148px; }
  .logo{ height: 124px; }

  /* ANCORAR no topo (em vez de centralizar) */
  .hero-section{
    padding-top: 148px;   /* mesmo valor do header */
    min-height: 100svh;
    display: grid;
    align-content: start; /* <-- puxa o conteúdo pro topo */
  }

  /* respiro mínimo entre logo e título */
  .hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8px 16px 0;  /* top = 8px deixa pertinho da logo */
  }

  /* controla exatamente o espaço do título/subtítulo */
  .hero-title{
    margin: 6px 0 10px;   /* tira “folga” de cima */
    line-height: 1.12;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .hero-subtitle{
    margin: 0 0 16px;
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .cta-button{
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  /* camadas do hero */
  .hero-background{ position:absolute; inset:0; z-index:0; }
  .hero-overlay{ position:absolute; inset:0; z-index:1; }
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.section-title {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.center {
  text-align: center;
}

.highlight {
  color: #ff6600;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("img/fundo.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-background {
    background-image: url("img/fundo2.JPG");
    background-position: center top; /* opcional */
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3rem); /* levemente menor */
  line-height: 1.28;                   /* um pouco mais espaçado entre linhas */
  max-width: 30ch;                     /* dá mais "respiro" lateral */
  margin: 0 auto 1.75rem;              /* distância extra embaixo */
  text-wrap: balance;
}


.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
  line-height: 1.6;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e55a00;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* ===== DREAM (enxuta) ===== */
.dream-section{
  background:#000;
  color:#fff;
  text-align:center;
  padding:4rem 0 5rem;
}

.dream-content{
  max-width:64rem;
  margin:0 auto;
  padding:0 1rem;
  position:relative;
}

.dream-title{
  font-family:"Bebas Neue", cursive;
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:1.1;
  margin:1rem 0;
}

.dream-subtitle{
  font-size:clamp(1rem,1.5vw,1.25rem);
  line-height:1.6;
  margin:0 auto 2rem;
  max-width:55ch;
  opacity:.9;
}

.cta-button{
  margin-top:1.25rem;
  text-decoration:none;
}

/* Imagem (simples, sem “invasão”) */
.dream-image{
  display:block;
  max-width:min(92%,560px);
  height:auto;
  margin:0 auto 2rem;
  filter:drop-shadow(0 18px 54px rgba(0,0,0,.7));
  /* opcional: FADE suave na base — remova a linha abaixo se não quiser */
  -webkit-mask-image:linear-gradient(to bottom, #000 85%, transparent 100%); mask-image:linear-gradient(to bottom, #000 85%, transparent 100%);
}

/* ===== Desktop: 2 colunas (texto ESQ, foto DIR) ===== */
@media (min-width:1024px){
  .dream-content{
    max-width:1100px;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:2.5rem;
    align-items:center;
    text-align:left;
  }
  .dream-copy{ grid-column:1; }
  .dream-image{
    grid-column:2;
    justify-self:end;
    margin:0; /* sem deslocamentos */
  }
  .dream-subtitle{ max-width:50ch; }
}

/* ===== Mobile/Tablet: empilhado simples ===== */
@media (max-width:1023.98px){
  .dream-content{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .dream-image{ order:-1; } /* foto antes do texto */
}

/* Target Section */
.target-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.target-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.target-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.target-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.target-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #000;
}

/* Espaço entre a subhead e os cards */
.target-section .section-subtitle {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.target-description {
  color: #6b7280;
}

/* Results Section */
.results-title{
  font-family: "Bebas Neue", cursive;   /* se estiver usando */
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 .5rem;
}
.results-subtitle{
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0 auto 2rem;
  max-width: 60ch;
}

.results-section {
  padding: 5rem 0;
  background-color: #ffffff;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.result-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.result-image {
  width: 100%;
  aspect-ratio: 3 / 4;   /* formato mais vertical tipo antes/depois */
  object-fit: cover;     /* preenche o espaço sem distorcer */
  display: block;
}

/* Grid responsivo */
@media (min-width: 640px) { 
  .results-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (min-width: 1024px){ 
  .results-grid { grid-template-columns: repeat(4, 1fr); } 
}


/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pricing-card.premium {
  border: 2px solid #ff6600;
}

.premium-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff6600;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: bold;
}

.pricing-header-card {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: #6b7280;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6600;
}

.period {
  color: #6b7280;
}

.installments {
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-content {
  padding: 0 2rem 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-button {
  width: 100%;
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: bold;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.plan-button:hover {
  background-color: #e55a00;
}

/* Forçar alinhamento vertical dos cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Conteúdo flexível dentro do card */
.pricing-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Empurra o botão para base */
.plan-button {
  margin-top: auto;
}

/* Nota abaixo do botão */
.plan-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

/* Texto do rodapé da seção */
.pricing-foot {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #374151;
}
.pricing-foot .micro-trust {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.testimonial-text {
  color: #6b7280;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: #6b7280;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 5rem 0;
  min-height: 60vh; /* altura mínima para destacar a imagem */
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Fundo da imagem */
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/fundo-cta.JPG") center center / cover no-repeat;
  z-index: 1;
}

/* Overlay escuro */
.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* ajusta a opacidade (0.3 mais claro, 0.7 mais escuro) */
  z-index: 2;
}

/* Conteúdo por cima */
.final-cta-title,
.final-cta-subtitle,
.final-cta-button {
  position: relative;
  z-index: 3;
}

.final-cta-title {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.final-cta-button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}

.final-cta-button:hover {
  background-color: #e55a00;
}

.arrow {
  font-size: 1.25rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-title {
  font-family: "Bebas Neue", cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.footer-subtitle {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6600;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dream-title {
    font-size: 3.75rem;
  }

  .dream-subtitle {
    font-size: 1.5rem;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pricing-card.premium {
    transform: scale(1.05);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-title {
    font-size: 3.75rem;
  }

  .final-cta-subtitle {
    font-size: 1.5rem;
  }

  .final-cta-button {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .target-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
