* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
}

/* Header */
.header {
    background: linear-gradient(135deg,  0%, #f0f8fc 100%);
    border-bottom: 1px solid #e0e0e0;
    padding: 0 20px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Navegação */
.navigation {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2196F3;
}

.nav-link.active {
    color: #2196F3;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2196F3;
    border-radius: 1px;
}

/* Botão de Suporte */
.support-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.support-btn:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    transform: translateY(-1px);
}

.support-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

/* Seção Hero */
.hero {
  background-color: #0c2b40;
  color: white;
  padding: 0;
}

.hero-container {
  display: flex;
  height: 100%;
  min-height: 400px;
}

.hero-text {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Isso garante o preenchimento total sem distorcer */
}

/* Botões */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.filled {
  background-color: #fff;
  color: #0c2b40;
  border: none;
}

.btn.filled:hover {
  background-color: #e0e0e0;
}

.btn.outlined {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.outlined:hover {
  background-color: #fff;
  color: #0c2b40;
}

/* Seção About Us */
.about-us {
    background-color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}

.about-text {
    flex: 1 1 500px;
    font-size: 16px;
    color: #333;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1f3b4d;
    text-align: center;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seção Conheça-nos */
.know-us {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.know-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.know-us-image {
    flex: 1 1 450px;
    text-align: center;
}

.know-us-image img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.know-us-content {
    flex: 1 1 500px;
    color: #333;
}

.know-us-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f3b4d;
    margin-bottom: 25px;
    text-align: left;
}

.know-us-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.know-us-content p em {
    color: #2196F3;
    font-style: italic;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
    color: #666;
    min-width: 130px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.social-btn.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.social-btn.instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.social-btn.instagram:hover {
    background-color: #E4405F;
    color: white;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    .navigation {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .support-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        background-position: center;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    /* About Us responsivo */
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text, .about-image {
        width: 100%;
        text-align: center;
    }

    .about-text h2,
    .about-text h3 {
        text-align: center;
    }

    .about-text p {
        text-align: justify;
    }
}
@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    height: auto;
  }

  .hero-text {
    width: 100%;
    order: 0;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-image {
    order: 1;
    width: 100%;
    margin-top: 20px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
}



@media (max-width: 480px) {
    .header {
        padding: 0 15px;
    }

    .navigation {
        gap: 15px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}


/* ====== Produtos (ajustado) ====== */
.produtos-carrossel {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  overflow-x: hidden;
}

.produtos-carrossel h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.carrossel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px; /* Adicionado espaço interno para não esconder os cards com as setas */
}

.carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.card:hover {
  border-color: #2196f3;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 10px;
  background-color: #fff;
}

.info {
  padding: 15px;
  text-align: left;
}

.info h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.info p {
  font-size: 0.9rem;
  color: #666;
  text-align: justify;
}

.card .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #2196f3;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.card .btn:hover {
  background-color: #1976d2;
}

/* Botões do carrossel */
.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  background: #ffffffcc;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.carrossel-btn:hover {
  background: #ffffff;
}

.carrossel-btn.prev {
  left: 0;
}

.carrossel-btn.next {
  right: 0;
}

@media (max-width: 768px) {
  .produtos-carrossel {
    padding: 0 10px;
  }

  .carrossel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden; /* remove carrossel horizontal */
  }

  .carrossel-item {
    flex: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .carrossel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px 12px 0 0;
  }

  .carrossel-btn {
    display: none; /* oculta setas no mobile */
  }
}

.parceiros {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.parceiros h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}

.parceiros-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parceiros-container img {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.parceiros-container img:hover {
  transform: scale(1.02);
}

.footer {
  background-color: #022035;
  color: #ffffff;
  padding: 40px 20px 10px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
}

.footer-section {
  max-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.footer-section p {
  margin: 4px 0;
  font-size: 16px;
}

.footer-map iframe {
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  height: 300px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .footer iframe {
    height: 300px;
  }
}


.suprimentos {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.suprimentos h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.suprimentos-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.suprimentos .card {
  width: 290px;
  height: 290px;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suprimentos .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.suprimentos .card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clientes {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.clientes h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.clientes-grid img {
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease;
  
}

.clientes-grid img:hover {
  transform: scale(1.1);
}

.clientes-subtitulo {
  font-size: 16px;
  color: #555;
  margin-top: -20px;
  margin-bottom: 40px;
}
