@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala:wght@400;700&display=swap');

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

/* ===== 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.7);
  box-shadow: 0 2px 10px 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 {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}


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

.menu li a:hover {
  color: #d4a5ff; /* roxo claro no hover */
}

/* 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);
}


/* ===== SOBRE ===== */
.sobre-empresa {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

.sobre-conteudo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.card-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.card-glass h2 {
  color: #6a0dad;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-glass p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.6;
}

.video-container {
  border: 3px solid #6a0dad;
  border-radius: 12px;
  overflow: hidden;
  margin: 25px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.sobre-imagem {
  flex: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)),
  url('imagens/edwin-chen-bIghQbDIcY4-unsplash.jpg') center/cover no-repeat;
  min-height: 100vh;
}

/* ===== RODAPÉ ===== */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

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

.footer-contact h3 {
  color: #6a0dad;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-contact p, 
.footer-contact a {
  font-size: 1rem;
  margin: 10px 0;
  color: #ddd;
  text-decoration: none;
}

.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;
  text-decoration: none;
  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;
}

.footer-info p {
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .sobre-empresa {
    flex-direction: column;
  }
  .sobre-imagem {
    min-height: 300px;
    order: -1; 
  }
  .card-glass {
    padding: 30px 20px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 200px;
    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;
    font-weight: 500;
    transition: color 0.2s;
  }

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

  .menu.active {
    right: 0; 
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 20;
  }
}



 