/* =================================================================
   FOLHA DE ESTILOS PRINCIPAL - GiManPro (v12 - Layout Fluido Definitivo)
   ================================================================= */

/* 1. VARIÁVEIS DE CORES E FONTES */
:root {
  /* Tema Claro (Padrão) */
  --primary-color: #ff5722;
  --secondary-color: #f4511e;
  --text-color: #333;
  --text-light: #555;
  --background-light: #fdfaf6;
  --background-section: #ffffff;
  --background-accent: #fff7f2;
  --white: #ffffff;
  --gray: #777;
  --border-color: #eee;
  --font-main: 'Poppins', sans-serif;
  --font-secondary: 'Nunito', sans-serif;
  --shadow-color: rgba(0,0,0,0.05);
}

.dark-mode {
  /* Tema Escuro */
  --primary-color: #ff6a3d;
  --secondary-color: #ff8a65;
  --text-color: #f0f0f0;
  --text-light: #b0b0b0;
  --background-light: #121212;
  --background-section: #1e1e1e;
  --background-accent: #2a2a2a;
  --white: #ffffff;
  --gray: #888;
  --border-color: #333;
  --shadow-color: rgba(0,0,0,0.2);
}

/* 2. RESET E CONFIGURAÇÕES GLOBAIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--background-light);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-color);
}

/* 3. NAVBAR E BOTÃO DE TEMA */
.top-nav {
  width: 100%;
  background: var(--background-section);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  max-width: 100%;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: background-color 0.3s, border-color 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-link {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
}

#menu-toggle { display: none; }

.hamburger {
  cursor: pointer;
  font-size: 28px;
  display: none;
  user-select: none;
  color: var(--primary-color);
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu li a {
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  color: var(--text-light);
}

.menu li a:hover, .menu li a.active {
  background-color: var(--background-accent);
  color: var(--primary-color);
}

.theme-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 50%;
}
.theme-toggle-button:hover {
    color: var(--primary-color);
    background-color: var(--background-accent);
}
.theme-toggle-button svg {
    transition: transform 0.3s ease;
}
.light-mode .icon-sun, .dark-mode .icon-moon { display: block; }
.light-mode .icon-moon, .dark-mode .icon-sun { display: none; }


/* 4. SEÇÕES PRINCIPAIS */
.highlights, .with-bg, .testemunhos, .privacidade, .faq, footer {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: background-color 0.3s;
}

/* ⭐ CORREÇÃO: CENTRALIZAR SEÇÃO PRIVACIDADE */
.privacidade {
  text-align: center;
}

.privacidade ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

/* 5. HERO */
.hero {
  padding: 2rem 1.5rem;
  overflow-x: clip;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80vh;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--primary-color); margin-top: 0.5rem; }
.hero-content h2 { font-family: var(--font-secondary); font-weight: normal; font-size: 1.2rem; color: var(--text-light); }
.hero-content .tagline { font-size: 1.1rem; color: var(--text-light); margin-top: -0.5rem; margin-bottom: 1.5rem; font-style: italic; }
.hero-content .tagline strong { color: var(--text-color); }
.hero-content .lead { margin: 1.5rem auto; max-width: 650px; font-size: 1.15rem; color: var(--text-light); }

@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-image-left, .hero-image-right {
  position: absolute;
  z-index: 1;
  animation: float-animation 6s ease-in-out infinite;
}

.hero-image-left { 
  right: calc(50% + clamp(300px, 25vw, 450px));
  transform: rotate(-8deg);
}
.hero-image-right { 
  left: calc(50% + clamp(300px, 25vw, 450px));
  animation-delay: 1s;
  transform: rotate(8deg);
}
.hero-image-left img, .hero-image-right img { 
  max-width: clamp(200px, 20vw, 280px);
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--shadow-color);
}

/* Botões */
.btn { display: inline-block; padding: 1rem 2rem; margin: 0.5rem; border: 2px solid transparent; border-radius: 8px; font-weight: bold; cursor: pointer; text-align: center; transition: transform 0.2s, box-shadow 0.3s; font-size: 1rem; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.primary { background-color: var(--primary-color); color: var(--white); }
.secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.small-note { margin-top: 1rem; font-size: 0.9rem; color: var(--gray); }

/* IMAGENS MOBILE */
.hero-images-mobile {
  display: none;
}

/* 6. OUTRAS SEÇÕES */
.highlights {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: var(--background-section);
  border-radius: 12px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
}

.highlight strong { display: block; font-size: 2.8rem; color: var(--primary-color); }
.highlight span { color: var(--text-light); }

.with-bg { background-color: var(--background-accent); border-radius: 16px; padding: 3rem 1rem; }

.benefits, .steps, .comparativo { max-width: 800px; margin: 2rem auto; padding: 2rem 1rem; background-color: var(--background-section); border-radius: 12px; }
.benefits h2, .steps h2, .comparativo h2, .testemunhos h2, .privacidade h2, .faq h2 { margin-bottom: 2rem; text-align: center; font-size: clamp(1.8rem, 4vw, 2.2rem); }
.benefits ul, .steps ol { padding-left: 1.5rem; }

.comparativo .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.comparativo .grid > div { background: var(--background-light); padding: 1.5rem; border: 1px solid var(--border-color); border-radius: 8px; }

/* 7. TESTEMUNHOS */
.testemunhos { background-color: var(--background-light); border-radius: 0; }
.testemunhos h2 { color: #0d214e; }
.dark-mode .testemunhos h2 { color: var(--text-color); }

.testemunhos-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.card-depoimento { background-color: var(--background-section); border: 1px solid var(--border-color); padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px var(--shadow-color); display: flex; flex-direction: column; gap: 1rem; }
.depoimento-header { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }
.depoimento-header .nome { font-weight: bold; color: var(--text-color); margin: 0; }
.depoimento-header .dispositivo { font-size: 0.85rem; color: var(--gray); margin: 0; }
.estrelas { color: #f59e0b; font-size: 1rem; }
.card-depoimento .texto { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* 8. FAQ */
.faq { max-width: 800px; }
.faq-item { margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; background-color: var(--background-section); }
.faq-question { background: none; color: var(--text-color); font-weight: bold; width: 100%; border: none; padding: 1.2rem 1.5rem; cursor: pointer; text-align: left; font-size: 1.1rem; position: relative; transition: background-color 0.3s; }
.faq-question::after { content: '+'; position: absolute; right: 1.5rem; font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.5rem; color: var(--text-light); transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.5rem 1.5rem; }

/* Centraliza os títulos das categorias no FAQ */
.faq h3 {
  text-align: center;
  margin-top: 2.5rem;    /* Espaço extra em cima para separar do bloco anterior */
  margin-bottom: 1.5rem; /* Espaço embaixo antes de começar as perguntas */
  font-size: 1.5rem;     /* Tamanho da fonte opcional para destaque */
  color: var(--primary-color); /* Opcional: deixa na cor laranja do tema */
}

/* 9. FOOTER (ATUALIZADO COM REDES SOCIAIS) */
footer { background-color: #1c1c1c; color: #a0a0a0; text-align: center; max-width: 100%; padding: 3rem 1.5rem; }
.dark-mode footer { background-color: #000; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-top h3 { color: var(--primary-color); font-size: 1.8rem; }
.footer-links { margin: 1.5rem 0; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #a0a0a0; }
.footer-links a:hover { color: var(--white); }

/* Seção de contato e TikTok */
.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 1rem; }
.footer-contact a { color: #a0a0a0; }
.footer-contact a:hover { color: var(--white); }
.footer-contact p { margin-top: 0.5rem; font-size: 0.9rem; }

.social-links { margin-bottom: 5px; }
.social-icon { 
  color: #a0a0a0; 
  transition: all 0.3s ease; 
  display: inline-block; 
}
.social-icon:hover { 
  color: #ff0050; /* Cor do TikTok */
  transform: translateY(-3px) scale(1.1); 
}

/* 10. BANNER DE COOKIES */
#cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #1c1c1c; color: var(--white); padding: 1.5rem; display: none; align-items: center; justify-content: center; gap: 1.5rem; z-index: 1001; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); flex-wrap: wrap; text-align: center; }
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--white); text-decoration: underline; }
#cookie-banner .cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
#cookie-banner button { background: var(--primary-color); color: var(--white); padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; }
#cookie-banner button#cookie-decline { background: #555; }

/* 11. PÁGINAS DE POLÍTICAS */
.politica-header { text-align: center; padding: 4rem 1.5rem; background-color: var(--background-accent); }
.politica-container { background: var(--background-section); margin: 2rem auto; padding: 2rem; border-radius: 10px; max-width: 900px; line-height: 1.8; box-shadow: 0 2px 8px var(--shadow-color); }
.politica-container h1, .politica-container h2 { color: var(--primary-color); margin-top: 1.5rem; margin-bottom: 1rem; }
.back-button { display: inline-block; margin-top: 2rem; font-weight: bold; color: var(--primary-color); }

/* 12. CARD DESTACADO */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); } }
.highlighted-card { background: var(--background-section) !important; border: 2px solid var(--primary-color) !important; border-radius: 12px !important; transform: scale(1.05); box-shadow: 0 10px 30px var(--shadow-color); animation: pulse 2s infinite; }
.highlighted-card ul { list-style: none; padding-left: 0; }
.highlighted-card ul li { padding-left: 1.5em; position: relative; }
.highlighted-card ul li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: bold; }

/* 13. PÁGINA COMO INSTALAR - VÍDEOS */
.video-page {
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-page h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--text-color);
}

.video-page .intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.video-card {
  background: var(--background-section);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-color);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.video-card-header {
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  position: relative;
}

.video-card-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.video-card-header .brand-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.arrow-indicator {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.video-card-header:hover .arrow-indicator {
  color: rgba(255, 255, 255, 1);
}

.video-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.video-content.active {
  max-height: 800px;
  transition: max-height 0.6s ease;
}

.video-container-square {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-container-square iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-footer {
  padding: 20px;
  text-align: center;
}

.video-card-footer p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
  .hero-image-left, .hero-image-right { display: none; }
  .hero-container { min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .hero-images-mobile { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; align-items: center; }
  .hero-images-mobile img { max-width: 300px; width: 100%; border-radius: 16px; box-shadow: 0 10px 30px var(--shadow-color); }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .hamburger { display: block; }
  .menu { display: none; flex-direction: column; background: var(--background-section); position: absolute; top: 65px; left: 0; width: 100%; border-top: 1px solid var(--border-color); padding: 10px 0; box-shadow: 0 4px 10px var(--shadow-color); }
  #menu-toggle:checked ~ .menu { display: flex; }
  .menu li { text-align: center; width: 100%; }
  .menu li a { display: block; padding: 1rem; }
  .comparativo .grid { grid-template-columns: 1fr; }
  .highlighted-card { transform: scale(1); }
  #cookie-banner { flex-direction: column; text-align: center; }
}

/* 14. BOTÃO VOLTAR AO TOPO */
#back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top-btn:hover {
  background-color: var(--secondary-color);
}/* =================================================================
   FOLHA DE ESTILOS PRINCIPAL - GiManPro (v12 - Layout Fluido Definitivo)
   ================================================================= */

/* 1. VARIÁVEIS DE CORES E FONTES */
:root {
  /* Tema Claro (Padrão) */
  --primary-color: #ff5722;
  --secondary-color: #f4511e;
  --text-color: #333;
  --text-light: #555;
  --background-light: #fdfaf6;
  --background-section: #ffffff;
  --background-accent: #fff7f2;
  --white: #ffffff;
  --gray: #777;
  --border-color: #eee;
  --font-main: 'Poppins', sans-serif;
  --font-secondary: 'Nunito', sans-serif;
  --shadow-color: rgba(0,0,0,0.05);
}

.dark-mode {
  /* Tema Escuro */
  --primary-color: #ff6a3d;
  --secondary-color: #ff8a65;
  --text-color: #f0f0f0;
  --text-light: #b0b0b0;
  --background-light: #121212;
  --background-section: #1e1e1e;
  --background-accent: #2a2a2a;
  --white: #ffffff;
  --gray: #888;
  --border-color: #333;
  --shadow-color: rgba(0,0,0,0.2);
}

/* 2. RESET E CONFIGURAÇÕES GLOBAIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--background-light);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-color);
}

/* 3. NAVBAR E BOTÃO DE TEMA */
.top-nav {
  width: 100%;
  background: var(--background-section);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  max-width: 100%;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: background-color 0.3s, border-color 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-link {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
}

#menu-toggle { display: none; }

.hamburger {
  cursor: pointer;
  font-size: 28px;
  display: none;
  user-select: none;
  color: var(--primary-color);
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu li a {
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  color: var(--text-light);
}

.menu li a:hover, .menu li a.active {
  background-color: var(--background-accent);
  color: var(--primary-color);
}

.theme-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 50%;
}
.theme-toggle-button:hover {
    color: var(--primary-color);
    background-color: var(--background-accent);
}
.theme-toggle-button svg {
    transition: transform 0.3s ease;
}
.light-mode .icon-sun, .dark-mode .icon-moon { display: block; }
.light-mode .icon-moon, .dark-mode .icon-sun { display: none; }


/* 4. SEÇÕES PRINCIPAIS */
.highlights, .with-bg, .testemunhos, .privacidade, .faq, footer {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.privacidade {
  text-align: center;
}

.privacidade ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

/* 5. HERO */
.hero {
  padding: 2rem 1.5rem;
  overflow-x: clip;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80vh;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--primary-color); margin-top: 0.5rem; }
.hero-content h2 { font-family: var(--font-secondary); font-weight: normal; font-size: 1.2rem; color: var(--text-light); }
.hero-content .tagline { font-size: 1.1rem; color: var(--text-light); margin-top: -0.5rem; margin-bottom: 1.5rem; font-style: italic; }
.hero-content .tagline strong { color: var(--text-color); }
.hero-content .lead { margin: 1.5rem auto; max-width: 650px; font-size: 1.15rem; color: var(--text-light); }

@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-image-left, .hero-image-right {
  position: absolute;
  z-index: 1;
  animation: float-animation 6s ease-in-out infinite;
}

.hero-image-left { 
  right: calc(50% + clamp(300px, 25vw, 450px));
  transform: rotate(-8deg);
}
.hero-image-right { 
  left: calc(50% + clamp(300px, 25vw, 450px));
  animation-delay: 1s;
  transform: rotate(8deg);
}
.hero-image-left img, .hero-image-right img { 
  max-width: clamp(200px, 20vw, 280px);
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--shadow-color);
}

/* Botões */
.btn { display: inline-block; padding: 1rem 2rem; margin: 0.5rem; border: 2px solid transparent; border-radius: 8px; font-weight: bold; cursor: pointer; text-align: center; transition: transform 0.2s, box-shadow 0.3s; font-size: 1rem; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.primary { background-color: var(--primary-color); color: var(--white); }
.secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.small-note { margin-top: 1rem; font-size: 0.9rem; color: var(--gray); }

/* IMAGENS MOBILE */
.hero-images-mobile {
  display: none;
}

/* 6. OUTRAS SEÇÕES */
.highlights {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: var(--background-section);
  border-radius: 12px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
}

.highlight strong { display: block; font-size: 2.8rem; color: var(--primary-color); }
.highlight span { color: var(--text-light); }

.with-bg { background-color: var(--background-accent); border-radius: 16px; padding: 3rem 1rem; }

.benefits, .steps, .comparativo { max-width: 800px; margin: 2rem auto; padding: 2rem 1rem; background-color: var(--background-section); border-radius: 12px; }
.benefits h2, .steps h2, .comparativo h2, .testemunhos h2, .privacidade h2, .faq h2 { margin-bottom: 2rem; text-align: center; font-size: clamp(1.8rem, 4vw, 2.2rem); }
.benefits ul, .steps ol { padding-left: 1.5rem; }

.comparativo .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.comparativo .grid > div { background: var(--background-light); padding: 1.5rem; border: 1px solid var(--border-color); border-radius: 8px; }

/* 7. TESTEMUNHOS */
.testemunhos { background-color: var(--background-light); border-radius: 0; }
.testemunhos h2 { color: #0d214e; }
.dark-mode .testemunhos h2 { color: var(--text-color); }

.testemunhos-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.card-depoimento { background-color: var(--background-section); border: 1px solid var(--border-color); padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px var(--shadow-color); display: flex; flex-direction: column; gap: 1rem; }
.depoimento-header { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }
.depoimento-header .nome { font-weight: bold; color: var(--text-color); margin: 0; }
.depoimento-header .dispositivo { font-size: 0.85rem; color: var(--gray); margin: 0; }
.estrelas { color: #f59e0b; font-size: 1rem; }
.card-depoimento .texto { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* 8. FAQ */
.faq { max-width: 800px; }
.faq-item { margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; background-color: var(--background-section); }
.faq-question { background: none; color: var(--text-color); font-weight: bold; width: 100%; border: none; padding: 1.2rem 1.5rem; cursor: pointer; text-align: left; font-size: 1.1rem; position: relative; transition: background-color 0.3s; }
.faq-question::after { content: '+'; position: absolute; right: 1.5rem; font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.5rem; color: var(--text-light); transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.5rem 1.5rem; }

/* 9. FOOTER (COM REDE SOCIAL CIRCULAR) */
footer { background-color: #1c1c1c; color: #a0a0a0; text-align: center; max-width: 100%; padding: 3rem 1.5rem; }
.dark-mode footer { background-color: #000; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-top h3 { color: var(--primary-color); font-size: 1.8rem; }
.footer-links { margin: 1.5rem 0; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #a0a0a0; }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-top: 1rem; }
.footer-contact p { font-size: 0.9rem; }

/* Estilo do ícone social com borda circular */
.social-links { margin-bottom: 5px; }
.social-icon { 
  color: #a0a0a0; 
  transition: all 0.3s ease; 
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  border: 2px solid #a0a0a0; 
  background-color: transparent;
  text-decoration: none;
}
.social-icon:hover { 
  color: #fff; 
  border-color: #ff0050; /* Cor do TikTok */
  background-color: #ff0050; 
  transform: translateY(-5px) scale(1.05); 
  box-shadow: 0 5px 15px rgba(255, 0, 80, 0.3);
}

/* 10. BANNER DE COOKIES */
#cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #1c1c1c; color: var(--white); padding: 1.5rem; display: none; align-items: center; justify-content: center; gap: 1.5rem; z-index: 1001; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); flex-wrap: wrap; text-align: center; }
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--white); text-decoration: underline; }
#cookie-banner .cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
#cookie-banner button { background: var(--primary-color); color: var(--white); padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; }
#cookie-banner button#cookie-decline { background: #555; }

/* 11. PÁGINAS DE POLÍTICAS */
.politica-header { text-align: center; padding: 4rem 1.5rem; background-color: var(--background-accent); }
.politica-container { background: var(--background-section); margin: 2rem auto; padding: 2rem; border-radius: 10px; max-width: 900px; line-height: 1.8; box-shadow: 0 2px 8px var(--shadow-color); }
.politica-container h1, .politica-container h2 { color: var(--primary-color); margin-top: 1.5rem; margin-bottom: 1rem; }
.back-button { display: inline-block; margin-top: 2rem; font-weight: bold; color: var(--primary-color); }

/* 12. CARD DESTACADO */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); } }
.highlighted-card { background: var(--background-section) !important; border: 2px solid var(--primary-color) !important; border-radius: 12px !important; transform: scale(1.05); box-shadow: 0 10px 30px var(--shadow-color); animation: pulse 2s infinite; }
.highlighted-card ul { list-style: none; padding-left: 0; }
.highlighted-card ul li { padding-left: 1.5em; position: relative; }
.highlighted-card ul li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: bold; }

/* 13. PÁGINA COMO INSTALAR - VÍDEOS */
.video-page { padding: 100px 20px 60px; max-width: 1200px; margin: 0 auto; }
.video-page h1 { text-align: center; margin-bottom: 20px; font-size: 2.5rem; color: var(--text-color); }
.video-page .intro { text-align: center; margin-bottom: 50px; font-size: 1.1rem; color: var(--text-light); max-width: 800px; margin-left: auto; margin-right: auto; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.video-card { background: var(--background-section); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow-color); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px var(--shadow-color); }
.video-card-header { padding: 20px; text-align: center; background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); color: white; position: relative; }
.video-card-header h2 { margin: 0; font-size: 1.5rem; color: white; }
.video-card-header .brand-icon { font-size: 2.5rem; margin-bottom: 10px; }
.arrow-indicator { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); transition: transform 0.3s ease; pointer-events: none; }
.video-card-header:hover .arrow-indicator { color: rgba(255, 255, 255, 1); }
.video-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.video-content.active { max-height: 800px; transition: max-height 0.6s ease; }
.video-container-square { position: relative; padding-bottom: 100%; height: 0; overflow: hidden; background: #000; }
.video-container-square iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-footer { padding: 20px; text-align: center; }
.video-card-footer p { margin: 0; color: var(--text-light); font-size: 0.95rem; }

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
  .hero-image-left, .hero-image-right { display: none; }
  .hero-container { min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .hero-images-mobile { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; align-items: center; }
  .hero-images-mobile img { max-width: 300px; width: 100%; border-radius: 16px; box-shadow: 0 10px 30px var(--shadow-color); }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .hamburger { display: block; }
  .menu { display: none; flex-direction: column; background: var(--background-section); position: absolute; top: 65px; left: 0; width: 100%; border-top: 1px solid var(--border-color); padding: 10px 0; box-shadow: 0 4px 10px var(--shadow-color); }
  #menu-toggle:checked ~ .menu { display: flex; }
  .menu li { text-align: center; width: 100%; }
  .menu li a { display: block; padding: 1rem; }
  .comparativo .grid { grid-template-columns: 1fr; }
  .highlighted-card { transform: scale(1); }
  #cookie-banner { flex-direction: column; text-align: center; }
}

/* 14. BOTÃO VOLTAR AO TOPO */
#back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#back-to-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top-btn:hover { background-color: var(--secondary-color); }