* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6fc;
  color: #333;
}

/* HEADER AJUSTADO */
header {
  background: #5b4ddb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px; 
}

.logo img {
  height: 70px; 
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); 
}

header nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  opacity: 0.8;
}

/* HERO */
.hero {
  height: 600px;
  background-image: url("https://www.alaresinternet.com.br/_next/image?url=https%3A%2F%2Fstorage.googleapis.com%2Falaresspace%2FSite%2520Alares%2FBanners%2FEst%25C3%25A1ticas%2FBanners_autoatendimento_V8.png&w=1920&q=85");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(20, 20, 60, 0.85) 0%, rgba(20, 20, 60, 0.65) 50%, rgba(20, 20, 60, 0.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.btn-primary {
  background: #39e29d;
  color: #0f172a;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ACESSO RÁPIDO */
.quick {
  padding: 100px 60px;
  text-align: center;
}

.quick h2 {
  font-size: 32px;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  background: #5b4ddb;
  color: white;
  padding: 30px 35px;
  border-radius: 12px;
  text-decoration: none;
  min-width: 220px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* FAQ */
.faq {
  padding: 100px 20px;
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px;
  border: none;
  background: #eaeaea;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 18px;
  background: white;
}

/* CONTACT */
.contact {
  padding: 100px 60px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #5b4ddb;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

.footer-content p {
  margin: 5px 0;
}

.link-privacidade {
  color: #39e29d;
  text-decoration: none;
  font-weight: 600;
}

.link-privacidade:hover {
  text-decoration: underline;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 16px 18px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* AVISO DE COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  color: #fff;
  padding: 15px 20px;
  display: none; /* Mantido oculto. O JS cuida de mostrar se necessário */
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #39e29d;
  text-decoration: none;
  font-weight: bold;
}

.btn-cookie {
  background-color: #39e29d;
  color: #0f172a;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 20px;
  transition: 0.3s;
}

.btn-cookie:hover {
  background-color: #2bb37c;
}

/* RESPONSIVO */
@media(max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column; 
    gap: 15px;
  }

  .logo img {
    height: 55px; 
  }

  header nav a {
    margin: 0 10px;
  }

  .hero {
    height: 450px;
  }

  .hero-overlay {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .quick {
    padding: 60px 20px;
  }

  .contact {
    padding: 60px 20px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .btn-cookie {
    margin-left: 0;
    width: 100%;
  }
}