 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Alexandria", sans-serif;
      color: #222;
      background-color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* ===== HEADER E HERO ===== */
    .hero {
      width: 100%;
      height: 100vh;
      min-height: 700px;
      background-image: url("img/homeimg.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      color: white;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
      z-index: 1;
    }

    header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 25px 60px;
      position: relative;
      z-index: 10;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(5px);
    }

    #logo {
      width: 170px;
      transition: transform 0.3s ease;
    }

    #logo:hover {
      transform: scale(1.05);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 18px;
      position: relative;
      transition: color 0.3s ease;
      padding: 5px 0;
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background-color: #0066cc;
      transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    .hero-content {
      z-index: 2;
      text-align: left;
      margin-left: 80px;
      margin-bottom: 150px;
      max-width: 650px;
      padding: 0 20px;
    }

    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 1.3rem;
      opacity: 0.95;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    .hero-content button {
      padding: 15px 35px;
      font-size: 1.1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      background: linear-gradient(135deg, #0066cc, #004999);
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    }

    .hero-content button:hover {
      background: linear-gradient(135deg, #004999, #003366);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    }

    /* ===== SEÇÕES COM SLIDERS ===== */
    .section-container {
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .produtos {
      background-color: #ffffff;
    }

    .serviços {
      background-color: #ffffff;
    }

    .section-title {
      font-size: 2.8rem;
      margin-bottom: 60px;
      color: #0066cc;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #0066cc, #004999);
      border-radius: 2px;
    }

    .slider-wrapper {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px; /* Espaço para as setas */
    }

    .slider-container {
      position: relative;
      overflow: hidden;
      padding: 40px 0;
    }

    .cards-container {
      display: flex;
      gap: 30px;
      scroll-behavior: smooth;
      overflow-x: auto;
      padding: 20px 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
      display: none;
    }

    .card {
      background: white;
      border-radius: 20px;
      padding: 35px 25px;
      min-width: 320px;
      flex: 0 0 auto;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(0, 102, 204, 0.1);
    }

    .card:hover {
      transform: translateY(-12px);
      box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
      border-color: rgba(0, 102, 204, 0.3);
    }

    .card img {
      width: 250px;
      height: 160px;
      object-fit: contain;
      margin-bottom: 25px;
      padding: 15px;
      border-radius: 20px;
    }

    .card h3 {
      font-size: 1.6rem;
      margin-bottom: 20px;
      color: #0066cc;
      font-weight: 600;
    }

    .card p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #555;
      flex-grow: 1;
    }

    /* CORREÇÃO DAS SETAS - POSICIONAMENTO CORRETO */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, #0066cc, #004999);
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 20;
      box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
      opacity: 0.9;
    }

    .arrow:hover {
      background: linear-gradient(135deg, #004999, #003366);
      transform: translateY(-50%) scale(1.1);
      opacity: 1;
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.6);
    }

    .arrow.left {
      left: 0;
    }

    .arrow.right {
      right: 0;
    }

    /* Garantir que as setas não sejam cortadas em telas menores */
    @media (max-width: 768px) {
      .slider-wrapper {
        padding: 0 15px;
      }
      
      .arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      
      .arrow.left {
        left: 5px;
      }
      
      .arrow.right {
        right: 5px;
      }
    }

    @media (max-width: 480px) {
      .arrow {
        display: none; /* Esconder setas em telas muito pequenas */
      }
      
      .slider-wrapper {
        padding: 0;
      }
    }

    /* ===== QUEM SOMOS ===== */
    .qm {
      background: linear-gradient(135deg, #040041 0%, #1F1792 100%);
      color: white;
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
      min-height: 600px;
    }

    .qm-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    #qmleft {
      flex: 1;
      min-width: 300px;
    }

    #qmtitle {
      font-size: 3.5rem;
      margin-bottom: 30px;
      font-weight: 700;
      line-height: 1.2;
    }

    #quemsomos {
      font-size: 1.2rem;
      line-height: 1.8;
      opacity: 0.95;
      margin-bottom: 40px;
    }

    #qmrright {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    #imgqm {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(-5deg);
      transition: transform 0.5s ease;
    }

    #imgqm:hover {
      transform: perspective(1000px) rotateY(0deg);
    }

    .stats-container {
      display: flex;
      gap: 25px;
      margin-top: 60px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 25px;
      min-width: 200px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #4dabf7;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* ===== BANNER SUPERIOR ===== */
    .top-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #040041 0%, #1F1792 100%);
      color: white;
      padding: 80px 60px;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

    .top-banner::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('img/image\ 1.png') no-repeat center right;
      background-size: contain;
      opacity: 0.8;
    }

    .banner-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
    }

    .banner-content h1 {
      font-size: 2.8rem;
      margin-bottom: 25px;
      font-weight: 700;
      line-height: 1.3;
    }

    .banner-content p {
      font-size: 1.3rem;
      margin-bottom: 35px;
      line-height: 1.6;
      opacity: 0.95;
    }

    .banner-btn {
      background: linear-gradient(135deg, #4dabf7, #0066cc);
      border: none;
      color: white;
      padding: 16px 40px;
      font-size: 1.1rem;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(77, 171, 247, 0.4);
    }

    .banner-btn:hover {
      background: linear-gradient(135deg, #0066cc, #004999);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(77, 171, 247, 0.6);
    }

    /* ===== CONTATOS ===== */
    .contatos {
      background: linear-gradient(135deg, #f8fafc 0%, #e6f2ff 100%);
      padding: 100px 60px;
      position: relative;
    }

    .contatos-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .contatos-info {
      flex: 1;
      min-width: 300px;
    }

    .contatos-info h2 {
      font-size: 2.8rem;
      color: #0066cc;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .contato-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      padding: 20px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .contato-item:hover {
      transform: translateX(10px);
    }

    .contato-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #0066cc, #004999);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .contato-icon i {
      color: white;
      font-size: 1.5rem;
    }

    .contato-details h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: #0066cc;
    }

    .contato-details p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
    }

    .contato-form {
      flex: 1;
      min-width: 300px;
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .contato-form h2 {
      color: #0066cc;
      margin-bottom: 30px;
      font-size: 2.2rem;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: #333;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px 20px;
      border: 2px solid #e1e8f0;
      border-radius: 12px;
      font-family: "Alexandria", sans-serif;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #0066cc;
      box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, #0066cc, #004999);
      color: white;
      border: none;
      padding: 16px 40px;
      border-radius: 12px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      width: 100%;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, #004999, #003366);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 40px;
    }

    .social-link {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #0066cc, #004999);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-link:hover {
      transform: translateY(-5px) rotate(5deg);
      background: linear-gradient(135deg, #004999, #003366);
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    }

    .social-link i {
      color: white;
      font-size: 1.3rem;
    }

    /* ===== RODAPÉ ===== */
    .rodape {
      background: #1a1a2e;
      color: white;
      padding: 80px 60px 30px;
    }

    .rodape-top {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 60px;
      flex-wrap: wrap;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rodape-logo {
      flex: 2;
      min-width: 300px;
    }

    .logo-footer {
      width: 200px;
      margin-bottom: 25px;
      margin-top: -10px;
    }

    .rodape-logo p {
      font-size: 1.1rem;
      line-height: 1.7;
      opacity: 0.8;
      max-width: 400px;
      margin-top: 0px;
    }

    .rodape-col {
      flex: 1;
      min-width: 200px;
    }

    .rodape-col h3 {
      color: #4dabf7;
      margin-bottom: 25px;
      font-size: 1.3rem;
      font-weight: 600;
    }

    .rodape-col a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      margin: 12px 0;
      display: block;
      transition: all 0.3s ease;
      font-size: 1.05rem;
    }

    .rodape-col a:hover {
      color: #4dabf7;
      transform: translateX(5px);
    }

    .rodape-col p {
      color: rgba(255, 255, 255, 0.8);
      margin: 12px 0;
      font-size: 1.05rem;
    }

    .rodape-bottom {
      max-width: 1400px;
      margin: 40px auto 0;
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rodape-bottom p {
      margin: 10px 0;
      opacity: 0.7;
      font-size: 1rem;
    }

    .rodape-bottom a {
      color: #4dabf7;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .rodape-bottom a:hover {
      text-decoration: underline;
    }

    .icons {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 25px;
    }

    .icons img {
      width: 32px;
      height: 32px;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .icons img:hover {
      transform: translateY(-5px);
      filter: brightness(0) invert(0.7);
    }

    /* ===== RESPONSIVIDADE GERAL ===== */
    @media (max-width: 1200px) {
      .section-container,
      .qm,
      .top-banner,
      .contatos,
      .rodape {
        padding: 80px 40px;
      }
      
      .slider-wrapper {
        padding: 0 30px;
      }
    }

    @media (max-width: 992px) {
      header {
        padding: 20px 30px;
      }
      
      .hero-content {
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 100px;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .section-container,
      .qm,
      .top-banner,
      .contatos,
      .rodape {
        padding: 80px 30px;
      }
      
      .qm-content {
        flex-direction: column;
        text-align: center;
      }
      
      #imgqm {
        max-width: 500px;
      }
      
      .top-banner::before {
        opacity: 0.3;
      }
      
      .contatos-container {
        flex-direction: column;
      }
      
      .slider-wrapper {
        padding: 0 40px;
      }
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
      }
      
      nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
      
      .hero-content {
        text-align: center;
        margin: 0 20px 80px;
      }
      
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      
      .arrow.left {
        left: 5px;
      }
      
      .arrow.right {
        right: 5px;
      }
      
      .card {
        min-width: 280px;
      }
      
      .rodape-top {
        flex-direction: column;
        gap: 40px;
      }
      
      .stats-container {
        flex-direction: column;
        align-items: center;
      }
      
      .stat-card {
        width: 100%;
        max-width: 300px;
      }
      
      .slider-wrapper {
        padding: 0 20px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        height: 90vh;
        min-height: 600px;
      }
      
      .section-container,
      .qm,
      .top-banner,
      .contatos,
      .rodape {
        padding: 60px 20px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      #qmtitle {
        font-size: 2.5rem;
      }
      
      .contato-form {
        padding: 25px;
      }
      
      .form-group input,
      .form-group textarea {
        padding: 14px;
      }
      
      /* Mostrar setas menores em mobile */
      .arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      
      .slider-wrapper {
        padding: 0 10px;
      }
    }

    /* ===== ANIMAÇÕES ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    }

    /* ===== SCROLLBAR PERSONALIZADA ===== */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #0066cc, #004999);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #004999, #003366);
    }

    .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.saiba-mais-btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(135deg, #0066cc, #004999);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  margin-top: 20px;
}

.saiba-mais-btn:hover {
  background: linear-gradient(135deg, #004999, #003366);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  color: white;
}

/* Ajuste para responsividade */
@media (max-width: 768px) {
  .saiba-mais-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}