/* ========= RESET ========= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #212529;
  padding-bottom: 100px; /* espaço para rodapé fixo */
}

/* ========= HEADER ========= */
header {
  background: linear-gradient(135deg, #6b2eff 0%, #00ffa3 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 50px;
}

/* ========= NAVIGATION ========= */
/* Menu padrão */
.navbar {
 
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo-container img {
  height: 65px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  background: #6b2eff;
  color: white;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
  }

  #menu-toggle:checked ~ nav {
    display: flex;
    flex-direction: column;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
  }

  .menu li a {
    padding: 10px 0;
    color: #333;
  }
}


/* ========= HERO ========= */
.hero {
  background-color: #d4f5e9;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.hero-text .btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-text .btn:hover {
  background-color: #0068aa;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text .btn {
    padding: 10px 20px;
  }
}


/* ========= SECTION ========= */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.1em;
  margin: 0 auto 30px;
  max-width: 700px;
}

.section video {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

/* ========= GRID & BOXES ========= */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  text-align: center;
}

.box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}

.highlight {
  background: #e0f7fa;
}

/* ========= WHATSAPP BUTTON ========= */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  transition: 0.3s;
}

/* ========= FOOTER ========= */
footer {
    position: relative; /* ou remover completamente 'position: fixed' */
    padding: 20px;
    background-color: #f2f2f2;
    text-align: center;
  }

  

.social-links a {
  font-size: 28px;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.fa-instagram {
  color: #E1306C;
}

.fa-facebook {
  color: #1877F2;
}

.fa-youtube {
  color: #FF0000;
}

/* ========= BOTÃO WHATSAPP ========= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
}

/* ========= COOKIE POP-UP ========= */
 #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #333;
      color: white;
      padding: 20px;
      text-align: center;
      z-index: 1000;
      opacity: 0;
      transform: translateY(100%);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    #cookie-banner.show {
      opacity: 1;
      transform: translateY(0);
    }
    #cookie-banner button {
      background-color: #00b894;
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      margin-left: 10px;
    }
    #cookie-banner a {
      color: #81ecec;
      text-decoration: underline;
    }

/* ========= BOTÃO ELEGANTE ========= */
.btn-elegante {
  display: inline-block;
  padding: 12px 28px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-elegante:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* ========= RESPONSIVO ========= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    display: block;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    font-size: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .social-links a {
    font-size: 24px;
  }
}
