/* 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;
  min-height: 100svh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  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: 3;
  flex: 1 1 520px;
  min-width: 0;
  max-width: 795px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  padding-top: clamp(50px, 8vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.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: #e85107;
  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-title-accent {
  color: #e85107;
}

.produtos-hero-description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 2rem;
}

.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);
}

/* HERO HIGHLIGHTS (3 colunas dentro do hero) */
.produtos-highlights-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin-top: 2.5rem;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.highlight-item + .highlight-item {
  border-left: 1.5px solid rgba(255, 255, 255, 0.25);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e85107;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
}

.highlight-text {
  display: flex;
  flex-direction: column;
}

.highlight-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.highlight-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0.25rem 0 0;
  white-space: nowrap;
}

/* 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);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .produtos-hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 2rem;
  }

  .produtos-hero-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: clamp(110px, 16vw, 140px);
  }
}
@media (max-width: 1024px) {
  .produtos-hero {
    min-height: 90vh;
    min-height: 90svh;
  }

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

  .produtos-hero-content {
    max-width: 100%;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    padding-top: clamp(110px, 16vw, 140px);
    align-items: flex-start;
  }

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

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

@media (max-width: 768px) {
  .produtos-highlights-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .highlight-item {
    padding: 0;
  }

  .highlight-item + .highlight-item {
    border-left: none;
  }

  .produtos-hero {
    min-height: 85vh;
    min-height: 85svh;
  }

  .produtos-hero-content {
    padding: 0 clamp(1.25rem, 4vw, 1.75rem);
    padding-top: 160px;
    align-items: flex-start;
  }

  .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;
  }

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

@media (max-width: 480px) {
  .produtos-hero {
    min-height: 80vh;
    min-height: 80svh;
  }

  .produtos-hero-content {
    padding: 0 clamp(1.25rem, 4vw, 1.25rem);
    padding-top: 160px;
  }

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


  .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;
  }
}

/* PRODUTO DETALHES PAGE */
.produto-detalhes {
  padding: 8rem 2rem 4rem;
  background-color: #f8f9fa;
  font-family: 'Space Grotesk', sans-serif;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #e85107;
}

.produto-detalhes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.produto-detalhes-info {
  display: flex;
  flex-direction: column;
}

.produto-detalhes-icon {
  margin-bottom: 1.5rem;
}

.produto-detalhes-icon img {
  width: 80px;
  height: 80px;
}

.produto-detalhes-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.produto-detalhes-desc {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-primary {
  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;
  align-self: flex-start;
}

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

.produto-detalhes-image {
  position: relative;
}

.produto-detalhes-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.produto-info-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.produto-info-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.produto-info-section p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.produto-info-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.produto-info-section ul {
  list-style: none;
  padding: 0;
}

.produto-info-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.produto-info-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e85107;
  font-size: 1.5rem;
  line-height: 1;
}

/* RESPONSIVE - PRODUTO DETALHES */
@media (max-width: 1024px) {
  .produto-detalhes-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .produto-detalhes-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .produto-detalhes {
    padding: 9.5rem 1.5rem 3rem;
  }

  .produto-detalhes-title {
    font-size: 1.75rem;
  }

  .produto-detalhes-desc {
    font-size: 1rem;
  }

  .produto-detalhes-icon img {
    width: 60px;
    height: 60px;
  }

  .produto-info-section {
    padding: 4rem 1.5rem;
  }

  .produto-info-section h2 {
    font-size: 1.75rem;
  }

  .produto-info-section h3 {
    font-size: 1.25rem;
  }

  .produto-info-section p {
    font-size: 1rem;
  }

  .produto-info-section ul li {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .produto-detalhes {
    padding: 9.5rem 1rem 2rem;
  }

  .produto-detalhes-title {
    font-size: 1.5rem;
  }

  .produto-detalhes-desc {
    font-size: 0.9375rem;
  }

  .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .produto-info-section {
    padding: 3rem 1rem;
  }

  .produto-info-section h2 {
    font-size: 1.5rem;
  }

  .produto-info-section p {
    font-size: 0.9375rem;
  }
}

