/* --------------------------------------------------------------
   RESET & BASE
-------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  /* Fundo roxo degradê + parallax */
  background: linear-gradient(to bottom, #6a3093, #a044ff);
  background-attachment: fixed;
  background-size: cover;
  scroll-behavior: smooth; /* Rolagem suave */
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Evitar que o topo fique escondido atrás do header fixo */
body {
  padding-top: 80px;
}

/* --------------------------------------------------------------
   MENU SUPERIOR FIXO
-------------------------------------------------------------- */
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-img {
  height: 60px;
  margin-bottom: 5px;
}
.sub-logo-text {
  font-size: 0.52rem; /* 35% menor */
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: -2px;
}
.nav-menu {
  display: flex;
  gap: 20px;
}
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem; /* 25% menor */
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}
.nav-menu li a:hover {
  background: rgba(255,255,255,0.2);
}
/* Ícone Hamburger (mobile) */
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff; 
  margin: 5px 0;
  transition: 0.3s;
}

/* --------------------------------------------------------------
   FADE IN ON SCROLL
-------------------------------------------------------------- */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------
   HERO SECTION
-------------------------------------------------------------- */
.hero-section {
  text-align: center;
  padding: 80px 0;
}
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.hero-subtitle.highlight {
  font-weight: 700;
  color: #ffd700;
}
/* Botão "CONHEÇA A MAYA" só no mobile */
.cta-maya-mobile {
  display: none;
  margin-top: 20px;
}
.cta-maya-mobile .cta-maya-btn {
  display: inline-block;
  background: #ffd700; 
  color: #333;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
}
.cta-maya-mobile .cta-maya-btn:hover {
  background: #fcd303;
}

/* --------------------------------------------------------------
   QUEM É A MAYA? (Vídeo + texto)
-------------------------------------------------------------- */
.quem-e-maya-section {
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 10px;
  padding: 40px 20px 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.col-left, .col-right {
  flex: 1 1 400px;
}
.col-left {
  text-align: left; /* Centraliza em mobile no media query */
}
.col-left h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffd700;
}
.col-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.features-list {
  list-style: disc inside;
  margin-top: 10px;
  line-height: 1.6;
}
.text-yellow {
  color: #ffd700;
  font-weight: 400;
}
/* Vídeo 25% maior => ~70% */
.main-video {
  position: relative;
  width: 100%;
  padding-top: 70%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.main-video iframe {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Botão "CONHEÇA A MAYA" no desktop */
.cta-maya-container {
  text-align: center;
  margin-top: 40px;
}
.cta-maya-btn {
  display: inline-block;
  background: #ffd700; 
  color: #333;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
}
.cta-maya-btn:hover {
  background: #fcd303;
}

/* --------------------------------------------------------------
   FAQ
-------------------------------------------------------------- */
.faq-section {
  padding: 40px 20px;
  background: rgba(0,0,0,0.3);
  margin-top: 20px;
  border-radius: 10px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 5px;
}
.faq-item.active p {
  max-height: 500px;
  margin-top: 5px;
}
.highlight-yellow {
  color: #ffd700;
  font-weight: 700;
}

/* --------------------------------------------------------------
   DEPOIMENTOS
-------------------------------------------------------------- */
.depoimentos-section {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 10px;
}
.depoimentos-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}
.depoimentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.video-testimonial {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-wrapper.small-video {
  position: relative;
  width: 320px;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-wrapper.small-video iframe {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------
   NOSSOS CLIENTES (fundo branco)
-------------------------------------------------------------- */
.clientes-section {
  padding: 40px 20px;
  background: #fff;
  margin-top: 20px;
  border-radius: 10px;
  color: #333;
}
.clientes-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.clientes-grid img {
  width: 156px; 
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 4px;
  padding: 5px;
}

/* --------------------------------------------------------------
   NOVA SEÇÃO: PLANOS E VALORES
-------------------------------------------------------------- */
.planos-precos-section {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 10px;
  text-align: center;
}
.planos-precos-section h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 15px;
}
.planos-precos-section .planos-details {
  list-style: disc inside;
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.6;
  font-size: 1rem;
}

/* --------------------------------------------------------------
   PLANOS PARA EQUIPES (sem valores)
-------------------------------------------------------------- */
.planos-equipes-section {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 10px;
  text-align: center;
}
.planos-equipes-section h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 15px;
}
.planos-equipes-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.planos-equipes-btn-container {
  margin-top: 10px;
}
.planos-equipes-btn {
  display: inline-block;
  background: #ffd700;
  color: #333;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
}
.planos-equipes-btn:hover {
  background: #fcd303;
}

/* --------------------------------------------------------------
   RODAPÉ (Logo 40% maior)
-------------------------------------------------------------- */
.footer-area {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  border-radius: 10px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-logo {
  height: 84px; 
  margin-bottom: 5px;
}

/* --------------------------------------------------------------
   PERSONALIZAÇÃO DO BOTÃO WHATSAPP (Tooltip com fundo branco)
-------------------------------------------------------------- */
#robbu-whatsapp-button .rwb-tooltip {
  background-color: #fff !important;
  color: #333 !important;
  border-radius: 4px;
  padding: 8px 12px;
}

/* --------------------------------------------------------------
   RESPONSIVIDADE - MOBILE
-------------------------------------------------------------- */
@media (max-width: 768px) {
  body {
    padding-top: 120px; 
  }
  /* Logo branca no mobile */
  .logo-img {
    filter: brightness(0) invert(1);
  }
  .nav-container {
    flex-direction: column;
    height: auto;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 80px;
    left: 0;
    padding: 10px 0;
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger span {
    background: #fff;
  }
  /* Exibe o botão "CONHEÇA A MAYA" no hero e oculta o da sessão "Quem é a Maya?" */
  .cta-maya-mobile {
    display: block;
  }
  .cta-maya-container {
    display: none;
  }
  /* Centraliza textos da sessão "Quem é a Maya?" */
  .col-left {
    text-align: center;
  }
  /* Sessão "Nossos Clientes" fundo branco */
  .clientes-section {
    background: #fff !important;
    color: #333 !important;
  }
  .clientes-section h2 {
    color: #333 !important;
  }
  /* Força todos os botões a serem amarelos em mobile */
  .cta-maya-btn,
  .planos-equipes-btn {
    background: #ffd700 !important;
    color: #333 !important;
  }
}
