/* ==========================================================================
   Definição de Variáveis e Reset Básico
   ========================================================================== */
:root {
  --cor-fundo-claro: #FFFFFF;
  --cor-fundo-cinza-claro: #f8f8f8;
  --cor-fundo-escuro: #3A3A3A;
  --cor-texto-escuro: #333333;
  --cor-texto-claro: #FFFFFF;
  --cor-dourado: #C49535;
  --cor-dourado-hover: #b8861f;
  --cor-titulo-escuro: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--cor-fundo-claro); color: var(--cor-texto-escuro); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.header { background-color: var(--cor-fundo-escuro); padding: 10px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: flex; align-items: center; height: auto; }
.header-content { display: flex; justify-content: center; align-items: center; width: 100%; }
.logo img { height: 150px; width: auto; object-fit: contain; }

/* ==========================================================================
   Seções de Conteúdo
   ========================================================================== */
section { padding: 60px 0; }
.hero { margin-top: 170px; } /* Ajustado para a altura do header */
.hero-content, .agitate-content, .solve-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
h2 { font-size: 36px; line-height: 1.2; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
.hero-text h2, .solve-text h3 { color: var(--cor-titulo-escuro); font-weight: bold; margin-bottom: 20px; }
p { color: var(--cor-texto-escuro); }
.hero-text p, .agitate-text p { font-size: 20px; }
.solve-text p { font-size: 18px; margin-bottom: 30px; }

.hero-image video, .agitate-image video, .solve-image video { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; }

/* Seções de Fundo */
.agitate, .video-testimonial-section, .benefits, .testimonials-section, .form-section, .guarantee { background-color: var(--cor-fundo-cinza-claro); }
.section-dark { background-color: var(--cor-fundo-escuro); }
.section-dark h3, .section-dark p { color: var(--cor-texto-claro); }

/* Video Depoimento */
.video-testimonial-section h3, .testimonials-section h3, .benefits h3, .form-section h3, .faq h3, .guarantee h3 { color: var(--cor-titulo-escuro); font-size: 32px; font-weight: bold; text-align: center; margin-bottom: 40px; }
.video-container { max-width: 600px; margin: 0 auto; background-color: #000; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.video-testimonial { width: 100%; height: auto; display: block; }

/* Benefícios */
.benefits { text-align: center; background-color: var(--cor-fundo-claro); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { background-color: var(--cor-fundo-claro); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 40px; margin-bottom: 20px; color: var(--cor-dourado); }
.benefit-card h4 { margin-bottom: 15px; color: var(--cor-titulo-escuro); }
.benefit-card p { font-size: 16px; line-height: 1.5; color: var(--cor-texto-escuro); }

/* Prova Social */
.social-proof h3 { text-align: center; margin-bottom: 40px; }
.proof-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.proof-item { text-align: center; padding: 20px; }
.proof-icon { font-size: 30px; color: var(--cor-dourado); margin-bottom: 15px; }

/* Depoimentos */
.testimonials-section { text-align: center; overflow: hidden; }
.testimonial-slider-container { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; padding: 0 20px; }
.testimonial-slider { display: flex; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-item { flex: 0 0 100%; background-color: var(--cor-fundo-claro); padding: 50px 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.05); }
.testimonial-item .stars { margin-bottom: 15px; color: var(--cor-dourado); font-size: 24px; }
.superhost-badge { height: 100px; /* Tamanho reduzido e corrigido */ width: auto; display: block; margin: 15px auto 25px auto; object-fit: contain; }
.testimonial-item .testimonial-text, .testimonial-item .testimonial-author { color: var(--cor-texto-escuro); } /* Correção da cor */
.testimonial-item .testimonial-text { font-size: 19px; line-height: 1.7; margin-bottom: 30px; font-style: italic; max-width: 700px; margin-left: auto; margin-right: auto; }
.testimonial-item .testimonial-author { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.testimonial-dots { display: flex; justify-content: center; margin-top: 40px; }
.testimonial-dots .dot { height: 14px; width: 14px; margin: 0 6px; background-color: #ccc; border-radius: 50%; display: inline-block; cursor: pointer; transition: all 0.3s ease; }
.testimonial-dots .dot.active { background-color: var(--cor-dourado); transform: scale(1.2); }

/* Formulário */
.form-section h3 { text-align: center; margin-bottom: 40px; }
.contact-form { max-width: 600px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 16px; font-weight: bold; }
.form-group input { width: 100%; padding: 15px; border: 2px solid #ddd; border-radius: 5px; font-size: 16px; background-color: var(--cor-fundo-claro); }
.form-group input:focus { outline: none; border-color: var(--cor-dourado); }

/* FAQ */
.faq h3 { text-align: center; margin-bottom: 40px; }
.faq-items { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; overflow: hidden; }
.faq-question { padding: 20px; background-color: var(--cor-fundo-cinza-claro); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; }
.faq-question:hover { background-color: #e0e0e0; }
.faq-icon { color: var(--cor-dourado); font-size: 20px; font-weight: bold; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.active { padding: 20px; max-height: 200px; }

/* Garantia */
.guarantee { text-align: center; }
.guarantee h3 { margin-bottom: 20px; }
.guarantee p { font-size: 18px; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }
.scarcity { background-color: var(--cor-dourado); color: var(--cor-texto-claro); padding: 20px; border-radius: 10px; margin: 30px 0; }
.scarcity h4 { color: var(--cor-texto-claro); font-size: 20px; font-weight: bold; }

/* Footer */
.footer { background-color: var(--cor-fundo-escuro); padding: 40px 0; color: var(--cor-texto-claro); }
.footer-info h4, .footer-info p { color: var(--cor-texto-claro); }

/* Botões e Ícones Flutuantes */
.btn-cta { background-color: var(--cor-dourado); color: var(--cor-texto-claro); padding: 15px 30px; border: none; border-radius: 5px; font-size: 18px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.btn-cta:hover { background-color: var(--cor-dourado-hover); transform: translateY(-2px); }
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 1000; }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background-color: var(--cor-dourado); border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.3); text-decoration: none; transition: all 0.3s ease; }
.whatsapp-float a:hover { transform: scale(1.1); }
.whatsapp-float-icon { font-size: 30px; color: var(--cor-texto-claro); line-height: 1; }
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background-color: var(--cor-fundo-claro); padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 999; display: none; transition: all 0.3s ease; }
.sticky-cta.show { display: block; }
.sticky-cta.footer-overlap { background-color: transparent; box-shadow: none; border-top: none; }
.sticky-cta.footer-overlap .btn-cta { opacity: 0; pointer-events: none; }

/* Responsividade */
@media (max-width: 768px) {
  .hero-content, .agitate-content, .solve-content { grid-template-columns: 1fr; gap: 30px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  p { font-size: 16px; }
  
  .header { height: 100px; padding: 10px 0; }
  .logo img { height: 80px; }
  .hero { margin-top: 100px; }
  .sticky-cta { display: block; }
  .video-testimonial-section h3, .testimonials-section h3 { font-size: 26px; }
  .video-container { max-width: 100%; }
  .superhost-badge { height: 100px; }
}