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

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* Adjust for top header and navbar */
}

/* Top Header */
.top-header {
  background: #ddd;
  color: #0A1F44;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  padding: 10px 0;
}

.top-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header .contact-info {
  display: flex;
  gap: 20px;
}

.top-header a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-header a:hover {
  color: #00AEEF;
}

.top-header i {
  margin-right: 8px;
}

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

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Navbar */
header {
  background: #0A1F44;
  padding: 15px 20px;
  position: fixed;
  top: 40px; /* Adjust for top header height */
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar .logo svg {
  max-height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar .logo:hover svg {
  transform: scale(1.05);
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar .nav-links {
  display: flex;
  gap: 25px;
}

.navbar .nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #00AEEF;
  transform: translateY(-2px);
}

.navbar .cta {
  background: #00AEEF;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .cta:hover {
  background: #0088CC;
  transform: scale(1.05);
}

.navbar .hamburger {
  display: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .hamburger:hover {
  color: #00AEEF;
}

.navbar .hamburger.active {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(10, 31, 68, 0.85), rgba(10, 31, 68, 0.85)), url('/imagens/Depositphotos_23781507_L.jpg') center/cover;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  margin-bottom: 30px;
}

.hero .btn {
  background: #00AEEF;
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background: #0088CC;
  transform: scale(1.1);
}

/* General Section Styling */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 25px;
}

.section p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Highlight Section */
.highlight .benefits, .highlight .testimonials {
  margin: 50px 0;
}

.highlight .benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.highlight .benefits li {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight .benefits li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.highlight .benefits li i {
  color: #00AEEF;
  font-size: 30px;
  margin-bottom: 15px;
}

/* About Section */
.about .story, .about .differentials {
  margin-bottom: 50px;
}

.about .differentials ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.about .differentials li {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about .differentials li:hover {
  transform: translateY(-8px);
}

.about .differentials li i {
  color: #00AEEF;
  font-size: 30px;
  margin-bottom: 15px;
}

.about .team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.about .team .member {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.about .team .member:hover {
  transform: translateY(-8px);
}

.about .team .member img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.about .team .member h3 {
  font-size: 26px;
  color: #0A1F44;
  margin-bottom: 10px;
}

.about .team .member .role {
  font-size: 16px;
  color: #00AEEF;
  margin-bottom: 10px;
}

/* Services Section */
.services .service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.services .service-list .service {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service-list .service:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.services .service-list .service h3 {
  font-size: 26px;
  color: #0A1F44;
  margin-bottom: 15px;
}

.services .service-list .service ul {
  list-style: none;
  margin-bottom: 20px;
}

.services .service-list .service ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.services .service-list .service ul li i {
  color: #00AEEF;
  margin-right: 10px;
}

.services .service-list .service .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  border-radius: 25px;
}

/* Social Proof Section */
.social-proof .experience, .social-proof .testimonials, .social-proof .partners {
  margin-bottom: 50px;
}

.social-proof .partners ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.social-proof .partners li {
  font-size: 20px;
  color: #0A1F44;
  font-weight: 600;
}

/* Contact Section */
.contact form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact form input, .contact form select, .contact form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact form input:focus, .contact form select:focus, .contact form textarea:focus {
  border-color: #00AEEF;
  outline: none;
}

.contact form button {
  background: #00AEEF;
  color: #FFFFFF;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact form button:hover {
  background: #0088CC;
  transform: scale(1.05);
}

.contact .whatsapp {
  margin: 30px 0;
}

.contact .whatsapp a {
  color: #00AEEF;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact .whatsapp a:hover {
  color: #0088CC;
}

.contact .whatsapp i {
  margin-right: 10px;
}

/* Footer */
footer {
  background: #0A1F44;
  color: #FFFFFF;
  padding: 50px 20px;
  text-align: center;
}

footer p {
  font-size: 16px;
  margin-bottom: 15px;
}

footer .links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}

footer .links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

footer .links a:hover {
  color: #00AEEF;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero h1 {
      font-size: 42px;
  }

  .hero p {
      font-size: 18px;
  }

  .section h2 {
      font-size: 34px;
  }

  .navbar .logo svg {
      max-height: 35px;
  }
}

@media (max-width: 768px) {
  .navbar{
    position: fixed;
      top: 0px; /* Below top header and navbar */
      right: 0;
      width: 100%;
      background: #0A1F44;
      padding: 10px 25px;
  }
  
  .navbar .nav-menu {
      display: none;
      position: fixed;
      top: 80px; /* Below top header and navbar */
      right: 0;
      width: 100%;
      background: #0A1F44;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      z-index: 999;
      animation: slideIn 0.3s ease-out forwards;
  }

  .navbar .nav-menu.active {
      display: flex;
  }

  .navbar .nav-links {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }

  .navbar .cta {
      margin-top: 15px;
  }

  .navbar .hamburger {
      display: block;
  }

  .hero {
      height: 600px;
  }

  .hero h1 {
      font-size: 32px;
  }

  .hero p {
      font-size: 16px;
  }

  .section h2 {
      font-size: 28px;
  }

  .about .team, .services .service-list {
      grid-template-columns: 1fr;
  }

  .navbar .logo svg {
      max-height: 30px;
  }
  .top-header{
    display: none;
  }
}

  

  /* .top-header-content {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }

  .top-header .contact-info {
      flex-direction: column;
      gap: 10px;
  }
} */

@media (max-width: 480px) {
  .hero .btn, .services .service-list .service .btn, .contact form button {
      padding: 12px 20px;
      font-size: 16px;
  }

  .contact form input, .contact form select, .contact form textarea {
      padding: 12px;
  }


  .navbar .logo svg {
      max-height: 25px;
  }

  .top-header{
    display: none;
  }
}