/* Trevisan Group - Design System */
:root {
  /* Cores principais baseadas na logo */
  --primary-gold: #f7f7f7;
  --primary-dark: #1A1A1A;
  --primary-light: #F5F5F5;
  --accent-gold: #fafafa;
  --text-dark: #2C2C2C;
  --text-light: #FFFFFF;
  --text-gray: #666666;
  
  /* Cores específicas por setor */
  --automotive-blue: #003366;
  --automotive-silver: #C0C0C0;
  --food-red: #CC0000;
  --food-orange: #FF6600;
  --gold-yellow: #FFD700;
  --gold-bronze: #CD7F32;
  
  /* Tipografia */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Sombras */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.25);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-light);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 3.5rem;
  color: var(--primary-gold);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

h3 {
  font-size: 2rem;
  color: var(--primary-dark);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Layout principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2A2A2A 100%);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after {
  width: 100%;
}

/* Menu mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */

/*
.hero.main-section {
  background: linear-gradient(
    135deg,
    rgba(7, 7, 8, 0.85) 0%,
    rgba(11, 7, 7, 0.2) 30%,
    rgba(22, 23, 23, 0.85) 70%,
    rgba(31, 31, 31, 0.2) 100%
  ),
  url('assets/images/logo_trevisan.jpeg');
}
*/

.hero.main-section::before {
  filter: brightness(0.8) contrast(1.2) hue-rotate(200deg) saturate(1.5);
  opacity: 0.2;
}

.hero {
  height: 100vh;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/*
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/images/logo_trevisan.jpeg') center/cover;
  opacity: 0.1;
  z-index: 1;
}
*/

.hero-content {
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 2rem 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero-content h1 {
  /*color: var(--primary-gold) !important; */
  color: white  !important;
  /*text-shadow: 3px 3px 8px rgba(255, 255, 255, 0.182) !important;*/
  font-weight: 700 !important;
}

.hero-content p {
  color: #FFFFFF !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.0) !important;
  opacity: 1 !important;
}

/* Botões */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--primary-gold);
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

/* Seções */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}


.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}


.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.card-text {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Seções específicas por página */
.automotive-section {
  background: linear-gradient(135deg, var(--automotive-blue) 0%, #004080 100%);
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: var(--spacing-sm);
}

.footer-section p, .footer-section a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: var(--spacing-md);
  opacity: 0.6;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.hero p {
  opacity: 1 !important;
  color: #FFFFFF !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8) !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-medium);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    opacity: 1 !important;
    color: #FFFFFF !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8) !important;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .card-content {
    padding: var(--spacing-sm);
  }
}

/* Utilitários */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--primary-gold);
}

.bg-dark {
  background: var(--primary-dark);
  color: var(--text-light);
}

.bg-light {
  background: var(--primary-light);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.py-xl {
  padding: var(--spacing-xl) 0;
}

/* Efeitos especiais */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-overlay > * {
  position: relative;
  z-index: 2;
}



/* Estilos para cards visuais otimizados */
.visual-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 120px;
  padding-top: 1rem;
}


.icon-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  transition: transform 0.3s ease;
}

.visual-card:hover .icon-image {
  transform: scale(1.1);
}

/* Estilos para cards de estatísticas com imagem de fundo */
.stats-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: scale(1.05);
}

.stats-card .card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stats-card .card-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.stats-card .card-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Melhorias gerais para cards */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Estilos para textos mais concisos */
.card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-gray);
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  text-align: center;
}

/* Animações suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}

.card:nth-child(3) {
  animation-delay: 0.2s;
}

.card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .icon-image {
    width: 50px;
    height: 50px;
  }
  
  .card-icon {
    height: 60px;
  }
  
  .stats-card .card-title {
    font-size: 2.5rem;
  }
  
  .stats-card {
    min-height: 150px;
  }
}

/* Efeitos de hover aprimorados */
.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(212,175,55,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.visual-card:hover::before {
  opacity: 1;
}

.visual-card .card-content {
  position: relative;
  z-index: 2;
}


/* ===== DESIGN CHIQUE E PROFISSIONAL ===== */

/* Gradientes sofisticados */
.hero {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%, 
    rgba(212, 175, 55, 0.1) 50%, 
    rgba(26, 26, 26, 0.95) 100%);    
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.9;
}

.hero.food-section {
  /*background: url('assets/images/cozinha-industrial.png');*/
  background-size: cover;
}

.hero.food-section::before {
  filter: brightness(1.2) contrast(1.1) saturate(0.8);
  
}

.hero.food-section .hero-content h1,
.hero.food-section .hero-content p {
  color: var(--primary-dark);
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Tipografia premium */
.section-title {
  color: black !important;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}


.section-title2 {
  color: white !important;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
  border-radius: 2px;
}

.section-title2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
  border-radius: 2px;
}

/* Cards premium com glassmorphism */
.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(212, 175, 55, 0.2);
}

/* Imagens com overlay elegante */
.card-image {
  position: relative;
  transition: all 0.4s ease;
}

.card:hover .card-image {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1);
}

/* Botões premium */
.btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

/* Seções com padrões elegantes */
.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Navegação premium */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Estatísticas com efeito premium */
.stats-card {
  position: relative;
  overflow: hidden;
}

.stats-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stats-card:hover::after {
  opacity: 1;
}

/* Animações sofisticadas */
@keyframes fadeInLuxury {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.card {
  animation: fadeInLuxury 0.8s ease-out;
}

/* Responsividade premium */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title2 {
    font-size: 2rem;
  }
  
  .card {
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}

/* Footer premium */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2c2c2c 100%);
  border-top: 1px solid var(--primary-gold);
}

/* Efeitos de luxo para joalheria */
.jewelry-section {
  background: linear-gradient(135deg, 
    #1a1a1a 0%, 
    #2c2c2c 25%, 
    #1a1a1a 50%, 
    #2c2c2c 75%, 
    #1a1a1a 100%);
  color: var(--text-light);
}

.jewelry-card {
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.jewelry-card:hover {
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.3),
    0 0 60px rgba(212, 175, 55, 0.1);
}


/* ===== GALERIA VISUAL ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;



  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--accent-gold);
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Grid responsivo para galeria */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Efeitos especiais para maximizar impacto visual */
.visual-impact-section {
  background: linear-gradient(
    45deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(212, 175, 55, 0.1) 25%,
    rgba(26, 26, 26, 0.9) 50%,
    rgba(212, 175, 55, 0.1) 75%,
    rgba(26, 26, 26, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.visual-impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: shimmerBackground 10s ease-in-out infinite;
}

@keyframes shimmerBackground {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Cards com mais impacto visual */
.impact-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(212, 175, 55, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.impact-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

.hero-enhanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

/* Camada da imagem com opacidade */
.hero-enhanced::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /*background: url('assets/images/cozinha_industrial_1.jpg');*/
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3; /* <--- Aqui você controla a opacidade da imagem */
  z-index: -2;
}

/* Camada de gradiente por cima da imagem */
.hero-enhanced::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: -1;
}




/* ===== BANNERS COM LOGO DE FUNDO ===== */

/* Hero principal com logo original */
.hero {
  /*background: linear-gradient(
/*      135deg,
 /*     rgba(26, 26, 26, 0.85) 0%,
  /*    rgba(212, 175, 55, 0.1) 30%,
/*      rgba(26, 26, 26, 0.85) 70%,
 /*     rgba(212, 175, 55, 0.1) 100%
   /* ),
    url('assets/images/logo_trevisan.jpeg');*/
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* opcional: para efeito parallax */
  background-color: #1a1a1a; /* mesma cor do fundo escuro */
  
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(1.2) contrast(1.1);
}


/* Hero automotivo com tonalidade azulada */
.hero.automotive-section {
  /*background: url('assets/images/Bosch_auto.png');*/
  background-position: center;
  background-size: cover;
}

.hero.automotive-section::before {
  filter: brightness(0.8) contrast(1.2) hue-rotate(200deg) saturate(1.5);
  
}

.hero.gold-section {
  /*background: url('assets/images/marketplace_joias.jpg');*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.gold-section::before {
  filter: brightness(1.4) contrast(1.3) saturate(1.8) hue-rotate(45deg);
  
}

.hero.gold-section .hero-content h1,
.hero.gold-section .hero-content p {
  color: white !important;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0) !important;
}




.hero.jewelry-section::before {
  filter: brightness(1.4) contrast(1.3) saturate(1.8) hue-rotate(45deg);
  opacity: 0.25;
  animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {
  0%, 100% { 
    filter: brightness(1.4) contrast(1.3) saturate(1.8) hue-rotate(45deg);
    opacity: 0.25;
  }
  50% { 
    filter: brightness(1.6) contrast(1.4) saturate(2) hue-rotate(50deg);
    opacity: 0.3;
  }
}


.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}


/* Efeito especial para logo no hero */
.hero-logo-effect {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  /*background: url('assets/images/logo_trevisan.jpeg');*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-55%) scale(1.05); }
}

/* Overlay gradiente para melhor contraste */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}


/* ===== LAYOUT SETORES 1:2:2 ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.sector-highlight {
  grid-row: span 1;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.sector-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.sector-highlight .card-content {
  padding: 2rem;
}

.sector-highlight .card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sector-highlight .card-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Tags de destaque */
.sector-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-tag {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  color: var(--primary-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.highlight-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Responsividade do grid de setores atualizado */
@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sector-full-width {
    grid-column: span 1;
  }
  
  .sector-full-width .card-content {
    padding: 1.5rem;
  }
  
  .sector-full-width .card-title {
    font-size: 1.5rem;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sector-highlight {
    grid-column: span 1;
  }
  
  .sector-highlight .card-content {
    padding: 1.5rem;
  }
  
  .sector-highlight .card-title {
    font-size: 1.5rem;
  }
  
  .highlight-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Efeitos especiais para o setor em destaque */
.sector-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 35px rgba(212, 175, 55, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

.sector-highlight .card-image {
  transition: all 0.4s ease;
}

.sector-highlight:hover .card-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* Animação especial para as tags */
@keyframes tagGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5); }
}

.highlight-tag {
  animation: tagGlow 3s ease-in-out infinite;
}


.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.visual-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.sector-full-width {
  min-height: 500px; /* ajuste conforme necessário */
  grid-column: span 2;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.sector-full-width::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.sector-full-width .card-content {
  padding: 2rem;
}

.sector-full-width .card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sector-full-width .card-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sector-full-width {
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.sector-full-width .card-image {
  height: 350px;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  /* Configuração básica do hero */
  .hero {
    position: relative;
    height: 80vh;
    background: #1A1A1A; /* Fundo base escuro */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
  }
  
  /* Adicionar imagem de fundo de modo controlado */
  .hero.main-section {
    /*background-image: linear-gradient(
      /*rgba(0, 0, 0, 0.15),
      /*rgba(0, 0, 0, 0.15)
    ), url('assets/images/logo_trevisan.png');*/
    background-size: cover;
    background-position: center;
  }
  
  /* Ajustes para outros tipos de hero */
  .hero.food-section {
    /*background-image: linear-gradient(
    /*  rgba(0, 0, 0, 0.15),
     /* rgba(0, 0, 0, 0.15)
    /*), url('assets/images/cozinha-industrial.png');*/
    background-size: cover;
    background-position: center;
  }
  
  .hero.automotive-section {
    /*background-image: linear-gradient(
    /*  rgba(0, 0, 0, 0.15),
    /*  rgba(0, 0, 0, 0.15)
    ), url('assets/images/Bosch_auto.png');*/
    background-size: cover;
    background-position: center;
  }
  
  .hero.gold-section {
    /*background-image: linear-gradient(
    /*  rgba(0, 0, 0, 0.15),
    /*  rgba(0, 0, 0, 0.15)
    /*), url('assets/images/marketplace_joias.jpg');*/
    background-size: cover;
    background-position: center;
  }
  
  /* Desativar pseudoelementos que podem interferir */
  .hero::before,
  .gradient-overlay::before,
  .hero-overlay,
  .hero-logo-effect {
    display: none !important;
  }
  
  /* Tornar o conteúdo completamente transparente */
  .hero-content {
    z-index: 10;
    /*background: transparent !important; /* Removendo o fundo */
    border-radius: 0;
    padding: 1.5rem;
    max-width: 90%;
    margin: 0 auto;

}
  
  /* Desativar pseudoelementos que podem interferir */
  .hero::before,
  .gradient-overlay::before,
  .hero-overlay,
  .hero-logo-effect {
    display: none !important;
  }
  
  /* Garantir visibilidade do conteúdo */
  .hero-content {
    z-index: 10;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
  }
}