/* PRODUTOS PAGE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HERO SECTION */
.produtos-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
}

.produtos-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.produtos-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.produtos-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15) 60%);
  z-index: 1;
}

.produtos-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 0 0;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 7rem;
}

.produtos-hero-content .produtos-hero-subtitle,
.produtos-hero-content .produtos-hero-title {
  text-align: left;
}

.produtos-hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.produtos-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
}

.produtos-hero-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #e85107;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.produtos-hero-button:hover {
  background-color: #e04900;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 86, 0, 0.3);
}

/* PRODUCTS SECTION */
.produtos-section {
  padding: 6rem 2rem;
  background-color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
}

.produtos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.produtos-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.produtos-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #f8f9fa;
  color: #666;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.produtos-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

/* PRODUCTS GRID */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.produto-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.produto-icon {
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.produto-icon svg,
.produto-icon img {
  width: 50px;
  height: 50px;
}

.produto-icon-svg {
  width: 40px;
  height: 40px;
  stroke: #7a4685;
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.produto-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  padding: 0 2rem;
  line-height: 1.3;
}

.produto-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  padding: 0 2rem 1.5rem;
  flex: 1;
}

.produto-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.produto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.produto-card:hover .produto-image img {
  transform: scale(1.05);
}

.produto-link {
  display: inline-flex;
  align-items: center;
  color: #e85107;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 2rem 2rem;
  transition: color 0.3s ease;
  gap: 0.75rem;
  position: relative;
}

.produto-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.produto-link:hover {
  color: #e04900;
}

.produto-link-arrow {
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.produto-card:hover .produto-link-arrow {
  transform: rotate(0deg) translateY(-4px);
}

/* CTA OVERLAY */
.cta-overlay {
  display: none;
}

/* FOOTER DECORATION - Usando estilos do footer.css */

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .produtos-hero {
    padding: 6rem 3rem 3rem;
  }

  .produtos-hero-title {
    font-size: 2.5rem;
    text-align: left;
  }

  .produtos-hero-content {
    max-width: 100%;
    padding: 0 1.5rem;
    align-items: flex-start;
    margin: 0;
  }

  .produtos-intro-title {
    font-size: 2rem;
  }

  .produtos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .produtos-hero {
    min-height: 80vh;
    padding: 5rem 2rem 2rem;
  }

  .produtos-hero-content {
    padding: 0;
    align-items: flex-start;
    margin: 0;
  }
  .produtos-hero-content {
    padding: 0;
    align-items: flex-start;
    margin: 0;
  }

  .produtos-hero-title {
    font-size: 2rem;
    text-align: left;
  }

  .produtos-hero-subtitle {
    font-size: 0.75rem;
  }

  .produtos-section {
    padding: 4rem 1.5rem 8rem;
  }

  .produtos-intro {
    margin-bottom: 3rem;
  }

  .produtos-intro-title {
    font-size: 1.75rem;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .produto-title {
    font-size: 1.25rem;
  }

  .produto-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .produtos-hero {
    min-height: 70vh;
    padding: 4.5rem 1.5rem 1.5rem;
  }

  .produtos-hero-title {
    font-size: 1.75rem;
    text-align: left;
  }

  .produtos-hero-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .produtos-section {
    padding: 3rem 1rem 6rem;
  }

  .produtos-intro-title {
    font-size: 1.5rem;
  }

  .produto-icon {
    padding: 1.5rem 1.5rem 0.75rem;
  }

  .produto-icon svg,
  .produto-icon img {
    width: 40px;
    height: 40px;
  }

  .produto-icon-svg {
    width: 36px;
    height: 36px;
  }

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

  .produto-title {
    font-size: 1.125rem;
    padding: 0 1.5rem;
  }

  .produto-description {
    padding: 0 1.5rem 1rem;
    font-size: 0.9375rem;
  }

  .produto-image {
    height: 160px;
    margin-bottom: 1rem;
  }

  .produto-link {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
  }
}

