/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}
section {
  padding: 80px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #3498db;
  margin: 15px auto;
}
/* Header e Navegação */
header {
  background-color: #2c3e50;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.logo span {
  color: #3498db;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}
nav a:hover {
  color: #3498db;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/produtos/banner1.png") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: var(--spacing-lg);
}

.hero-content {
  max-width: 800px;
  padding: var(--spacing-md);
  animation: fadeIn 1s ease;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  animation: slideUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  animation: slideUp 1s ease 0.2s;
}
/* Banner principal e carrossel */
#banner {
  padding-top: 120px;
  background-color: #f8f9fa;
  position: relative;
}
/* Estilos para o carrossel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 80vh; /* Ajuste a altura para ocupar 80% da altura da janela */
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.carousel-content {
  z-index: 1;
  text-align: center;
  padding: 0 50px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.carousel-indicator.active {
  background-color: white;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-content h2 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel {
    height: 60vh; /* Ajuste a altura para ocupar 60% da altura da janela em dispositivos móveis */
  }
}
.btn {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Sobre a empresa */
#sobre {
  background-color: white;
}
.sobre-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.sobre-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
}
.sobre-text {
  flex: 1;
}
.sobre-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
}
.sobre-text p {
  margin-bottom: 15px;
  color: #555;
}
/* Catálogo de produtos */
#catalogo {
  background-color: #f8f9fa;
}
.catalogo-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid #3498db;
  background-color: transparent;
  color: #3498db;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background-color: #3498db;
  color: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.btn-order {
  display: inline-block;
  background-color: #25d366; /* Verde */
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 10px; /* Espaço entre o título e o botão */
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-order:hover {
  background-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 200px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.product-info {
  padding: 20px;
  text-align: center; /* Centraliza o conteúdo dentro da div */
}
.product-category {
  display: inline-block;
  background-color: #e8f4fd;
  color: #3498db;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.product-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}
.product-price {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 152, 219, 0.9);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card:hover .product-overlay {
  height: 100%;
}
/* Benefícios e Diferenciais */
#beneficios {
  background-color: #f8f9fa;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.beneficio-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #ffffff;
  transition: 0.3s;
}
.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.beneficio-icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 20px;
}
.beneficio-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}
.beneficio-desc {
  color: #555;
}
/* Contato */
#contato {
  background-color: #f8f9fa;
}
.contato-card {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.contato-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}
.contato-card p {
  margin-bottom: 30px;
  color: #555;
}
.whatsapp-btn {
  background-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
}
.whatsapp-btn:hover {
  background-color: #1da851;
}
/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 20px 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #3498db;
}
.footer-col p,
.footer-col address {
  color: #ccc;
  margin-bottom: 10px;
  font-style: normal;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  color: #ccc;
  font-size: 0.9rem;
}
/* Responsividade */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-content {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: #2c3e50;
    flex-direction: column;
    width: 80%;
    height: calc(100vh - 70px);
    padding: 30px;
    transition: 0.5s;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .carousel-content h2 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .contato-card {
    padding: 30px 20px;
  }

  .sobre-content,
  .catalogo-filter {
    gap: 20px;
  }

  .catalogo-filter {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .contato-card {
    padding: 30px 20px;
  }

  .sobre-content,
  .catalogo-filter {
    gap: 20px;
  }

  .catalogo-filter {
    flex-wrap: wrap;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel {
    height: 400px;
  }
}

/* Estilos para a seção de parceiros */
#parceiros {
  padding: 40px 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #333;
}

.carousel-2-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
}

.carousel-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.carousel-2-item {
  min-width: 200px;
  height: 120px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.carousel-2-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%) blur(2px);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.carousel-2-item.active img {
  filter: grayscale(0%) blur(0px);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-2-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-2-controls button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-2-controls button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.prev-btn {
  margin-left: 10px;
}

.next-btn {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .carousel-2-item {
    min-width: 150px;
    margin: 0 20px;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-content {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: #2c3e50;
    flex-direction: column;
    width: 80%;
    height: calc(100vh - 70px);
    padding: 30px;
    transition: 0.5s;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .carousel-content h2 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .contato-card {
    padding: 30px 20px;
  }

  .sobre-content,
  .catalogo-filter {
    gap: 20px;
  }

  .catalogo-filter {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .contato-card {
    padding: 30px 20px;
  }

  .sobre-content,
  .catalogo-filter {
    gap: 20px;
  }

  .catalogo-filter {
    flex-wrap: wrap;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel {
    height: 400px;
  }
}
