* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Poppins', sans-serif;
    }

    .top-banner {
      background-color: #ed6a00;
      color: white;
      font-size: 12px;
      padding: 6px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .top-banner .left {
      flex: 1;
    }

    .top-banner .right {
      display: flex;
      gap: 20px;
    }

    .top-banner .right a {
      color: white;
      text-decoration: none;
      font-size: 12px;
    }

    header {
      border-bottom: 1px solid #eee;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 12px 20px;
      background-color: white;
      position: relative;
    }

    .logo img {
      height: 38px;
    }

    .menu-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      gap: 40px;
    }

    .menu-center {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .menu-center a {
      text-decoration: none;
      color: #333;
      font-size: 13px;
    }

    .navbar-icons {
      display: flex;
      gap: 16px;
    }

    .navbar-icons i {
      font-size: 16px;
      color: #111;
      cursor: pointer;
    }

    .mobile-toggle {
      display: none;
      font-size: 20px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: white;
      width: 100%;
      padding: 20px;
      border-top: 1px solid #eee;
      box-shadow: 0 8px 12px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .mobile-menu a {
      padding: 10px 0;
      font-size: 15px;
      color: #333;
      text-decoration: none;
    }

    .mobile-menu.show {
      display: flex;
    }

    @media (max-width: 960px) {
      .menu-wrapper,
      .navbar-icons,
      .top-banner .right {
        display: none;
      }

      .mobile-toggle {
        display: block;
        z-index: 1001;
      }
    }

    .hero-carousel {
    height: 100dvh;
    position: relative;
  }
  @supports not (height: 100dvh){
  .hero-carousel{ height: 100svh; } /* fallback melhor que 100vh */
}

  .swiper {
    width: 100%;
    height: auto;
    display:block;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    height: auto;
    position: relative;
    color: white;
    text-align: center;
  }

  /* 4) Pequena melhoria para âncoras quando há header sticky */
section[id], [id^="sec-"]{
  scroll-margin-top: 72px; /* ajusta ao teu header real */
}

  .overlay {
  background: rgba(0, 0, 0, 0.5); /* Escurece a imagem */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


  .slide-saude {
    background-image: url('../../assets/images/hero1.png');
  }

  .slide-hotelaria {
    background-image: url('../../assets/images/hero1.png');
  }

  .slide-industria {
    background-image: url('../../assets/images/hero1.png');
  }

  .hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 8px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .hero-content a {
    background: white;
    color: black;
    text-decoration: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
  }

  .hero-content a:hover {
    background: #e0e0e0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: white;
    width: 44px;
    height: 44px;
  }

    .destaques {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .destaques h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .container-destaques {
    max-width: 1200px;
    margin: 0 auto;
  }
  .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 30px;
    justify-content: center;
  margin-top: 40px;
  }

  .produto-card {
    background: white;
    border-radius: 6px;
    text-align: left;
    position: relative;
  }

  .imagem-wrapper {
    position: relative;
    background: #fff;
  }

  .imagem-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ed1c24;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }

  .favorito {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
  }

  .nome-produto {
    font-size: 14px;
    margin: 10px 0 4px;
    color: #222;
  }

  .preco {
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }

  .botao-destaques {
    margin-top: 50px;
  }

  .botao-destaques a {
    background: #001118;
    color: white;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
    transition: background 0.3s ease;
  }

  .botao-destaques a:hover {
    background: #00222f;
  }

  @media (max-width: 768px) {
    .produtos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .produtos-grid {
      grid-template-columns: 1fr;
    }
  }

  .cta-orcamento {
    background: #ff5f00;
    color: white;
    text-align: center;
    padding: 80px 20px;
  }

  .cta-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .cta-orcamento .cta-gratis {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .cta-orcamento h2 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .cta-botao {
    display: inline-block;
    background: white;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s ease;
  }

  .cta-botao:hover {
    background: #f2f2f2;
  }

  .video-section {
  background: #fff;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-fullscreen {
  margin: 0;
  padding: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 56.25vw; /* 16:9 ratio */
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.institucional-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
}

.institucional-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.institucional-section .stars {
  color: #f4b400;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.institucional-section .descricao {
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.6;
  color: #222;
}

.institucional-section .slogan {
  font-weight: 600;
  font-size: 0.9rem;
}

.clientes-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.clientes-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.clientes-logos img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.clientes-logos img:hover {
  opacity: 1;
}

.footer-dauti {
  background-color: #ff5c00;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  padding: 2px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  background: white;
  border-radius: 2px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: 10px;
  flex: 1;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #000;
  padding: 0 16px;
  cursor: pointer;
  font-size: 18px;
}

.newsletter-info {
  font-size: 11px;
  margin-top: 6px;
  color: #fff;
  opacity: 0.8;
}

.footer-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-final a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-final a:hover {
  text-decoration: underline;
}

.footer-copy,
.footer-credito {
  flex: 1 1 100%;
  text-align: center;
  margin: 5px 0;
}

.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5px 0;
}

.footer-payments img {
  height: 24px;
  object-fit: contain;
}

@media(min-width: 768px) {
  .footer-copy,
  .footer-credito {
    flex: unset;
    text-align: left;
  }

  .footer-final {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy,
  .footer-credito {
    flex: unset;
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }

  .footer-payments {
    margin: 12px 0;
  }
}

.contacto-section {
      padding: 80px 20px;
      background: #f9f9f9;
    }

    .contacto-section h1 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .contacto-section p.intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      font-size: 1rem;
      color: #555;
    }

    .contacto-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contacto-info {
      flex: 1 1 300px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .contacto-info h3,
    .contacto-info h4 {
      color: #ff5f00;
      margin-bottom: 12px;
    }

    .contacto-info p {
      margin-bottom: 14px;
    }

    .contacto-info a {
      color: #111;
      text-decoration: none;
    }

    .contacto-info i {
      margin-right: 8px;
      color: #ff5f00;
    }

    .contacto-formulario {
      flex: 1 1 500px;
    }

    .contacto-formulario form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contacto-formulario input,
    .contacto-formulario textarea {
      padding: 12px 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 0.95rem;
      font-family: 'Poppins', sans-serif;
      background: white;
      resize: vertical;
    }

    .contacto-formulario button {
      background: #ff5f00;
      color: white;
      font-weight: 600;
      border: none;
      padding: 12px 20px;
      font-size: 0.95rem;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contacto-formulario button:hover {
      background: #e04d00;
    }

    .contacto-mapa {
      margin-top: 60px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }

    .contacto-mapa iframe {
      width: 100%;
      height: 300px;
      border: none;
    }

    @media (max-width: 768px) {
      .contacto-grid {
        flex-direction: column;
      }
    }