@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===== CABEÇALHO ===== */
#cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  z-index: 10;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

#cabecalho.scrolled {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

#navegacao {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#iconeempresa {
  max-height: 70px;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #d4a5ff;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
#videoprincipal {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.45);
  text-align: center;
  padding: 20px;
}

.text-overlay h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f6f3f8, #a4a1a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite alternate;
}

@keyframes gradientMove {
  from { background-position: 0% }
  to { background-position: 100% }
}

/* ===== INFO SECTION ===== */
.modern-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 60px;
  padding: 50px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.text-content h2 {
  color: #6a0dad;
  font-size: 2rem;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 18px;
  color: #444;
}

.video-content video {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* ===========================
   Floating CTA
   =========================== */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366; /* Verde WhatsApp */
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Em telas pequenas, mostrar só o ícone */
@media (max-width: 600px) {
  .floating-cta .cta-text {
    display: none;
  }
}


/* ===== RODAPÉ ===== */
footer {
  background-color: #222;
  color: #f5f5f5; /* cor clara padrão */
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-contact h3 {
  color: #d4a5ff; /* roxo claro do tema */
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-contact p, 
.footer-contact a {
  font-size: 1rem;
  margin: 10px 0;
  color: #f0f0f0; /* texto claro */
}

.footer-contact a.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.footer-contact a.whatsapp img {
  width: 20px;
  height: 20px;
}

.footer-contact a.whatsapp:hover {
  background-color: #1ebe54;
}

.footer-info {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #bbb; /* cinza médio visível */
}


/* ===== ANIMAÇÕES SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 200px;
    height: 100vh;
    background: linear-gradient(180deg, #6a0dad, #2c003e);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px;
    gap: 25px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.4);
    transition: right 0.3s ease-in-out;
    z-index: 15;
  }

  .menu li a {
    color: #fff;
    font-size: 18px;
  }

  .menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .text-overlay h1 {
    font-size: 2.5rem;
  }

  .modern-info-container {
    flex-direction: column;
    margin: 20px;
    padding: 30px;
  }
}