* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-yellow: #FFD700;
  --secondary-dark: #111111;
  --text-light: #ffffff;
  --text-dark: #000000;
  --accent-green: #00A859;
  --gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));





}

html, body {
  min-height: 100vh;
  background: var(--gradient-dark);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#logo {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease;
}

#logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

#nav_links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}

#nav_links li {
  margin: 0 0.8rem;
  padding: 0;
  background-color: transparent;
  border: 2px solid var(--primary-yellow);
  border-radius: 30px;
  transition: all 0.3s ease;
}

#nav_links li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--primary-yellow);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

#nav_links li:hover {
  background-color: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

#nav_links li:hover a {
  color: var(--text-dark);
}

#relatorio{
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-green);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
}



/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

/* Vídeo de fundo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

.video-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.7;
  pointer-events: none;
}

a{
  text-decoration: none;
}

/* Elementos de segurança animados */
.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 60%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><circle cx="250" cy="250" r="240" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="1" stroke-dasharray="15,25" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: pulse 8s linear infinite;
  z-index: -1;
  opacity: 0.4;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 35%;
  width: 30%;
  height: 30%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><polygon points="100,10 190,100 100,190 10,100" fill="none" stroke="rgba(255,215,0,0.07)" stroke-width="1" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotate 30s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-yellow);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

/* Partículas animadas de segurança */
.security-particle {
  position: absolute;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: moveParticles linear infinite;
}

@keyframes moveParticles {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    transform: translate(var(--tx, 100px), var(--ty, 100px)) scale(0.2);
    opacity: 0;
  }
}

.hero-section .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, var(--accent-green), #008847);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.hero-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(145deg, #00c066, var(--accent-green));
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: rgba(17, 17, 17, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 2rem auto;
  max-width: 1140px;
  border-radius: 15px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-yellow);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 2px;
}

.tech-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.tech-card h3 {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tech-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-tabs {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.feature-nav {
  flex: 1;
  min-width: 300px;
}

.feature-content {
  flex: 2;
  min-width: 300px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 2px solid var(--primary-yellow);
  border-radius: 10px;
  color: var(--primary-yellow);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-btn:hover, .feature-btn.active {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.feature-content h3 {
  color: var(--primary-yellow);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-section {
  padding: 5rem 2rem;
  background: rgba(17, 17, 17, 0.7);
  max-width: 1140px;
  margin: 2rem auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Technologies Section */
.tech-section {
  padding: 5rem 2rem;
  max-width: 1140px;
  margin: 2rem auto;
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.resource-table th, .resource-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-table th {
  color: var(--primary-yellow);
  font-size: 1.5rem;
}

.resource-table img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.resource-list {
  padding-left: 1.5rem;
}

.resource-list li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 1140px;
  margin: 2rem auto;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-yellow);
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact a {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-yellow);
  transform: translateY(-3px);
}

.social-links i {
  color: var(--text-light);
  font-size: 1.2rem;
}

.social-links a:hover i {
  color: var(--text-dark);
}

.copyright {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.privacy-link {
  margin-top: 1rem;
}

.privacy-link a {
  color: var(--primary-yellow);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.privacy-link a:hover {
  text-decoration: underline;
}

/* WhatsApp Button Fixed */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
}

.whatsapp-fixed i {
  color: white;
  font-size: 2rem;
}

/* Carousel */
.carousel {
  margin: 3rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 1140px;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

/* Media Queries */
@media (max-width: 992px) {
  header {
    padding: 1rem;
  }
  
  #logo {
    height: 120px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .carousel-item img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  #nav_links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.4s ease;
  }

  #btn-w{
    display: none;
  }
  
  
  #nav.active #nav_links {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  #nav_links li {
    margin: 0.5rem 2rem;
    width: 80%;
    text-align: center;
    border-radius: 15px;
  }
  
  #nav_links li a {
    padding: 0.8rem 1.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  #menuMobile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    padding: 0;
    position: relative;
    font-size: 0; /* Hide text */
  }
  
  #hamburger {
    position: relative;
    width: 30px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    display: block;
  }
  
  #hamburger::before,
  #hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    left: 0;
  }
  
  #hamburger::before {
    transform: translateY(-10px);
  }
  
  #hamburger::after {
    transform: translateY(10px);
  }
  
  #nav.active #hamburger {
    background: transparent;
  }
  
  #nav.active #hamburger::before {
    transform: rotate(45deg);
  }
  
  #nav.active #hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .carousel-item img {
    height: 300px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .tech-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  #btn-w{
    display: none;
  }

  
  .whatsapp-fixed {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-fixed i {
    font-size: 1.5rem;
  }
  
  .carousel-item img {
    height: 250px;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
  padding: 5rem 2rem;
  background: rgba(17, 17, 17, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 2rem auto;
  max-width: 1140px;
  border-radius: 15px;
}

.privacy-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.privacy-content h2 {
  color: var(--primary-yellow);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.privacy-content p, .privacy-content ul {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-content a:hover {
  text-decoration: underline;
}