/* Header Hero Section */
.header-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Background com transição suave */
.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

/* Overlay com gradiente moderno */
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(34, 39, 171, 0.5) 0%,
    rgba(26, 31, 138, 0.45) 50%,
    rgba(34, 39, 171, 0.4) 100%
  );
  z-index: 1;
}

/* Formas geométricas decorativas animadas */
.header-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.header-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.header-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: 10%;
  animation-delay: 2s;
}

.header-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Conteúdo do Header */
.header-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título */
.header-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.header-highlight {
  display: block;
  color: #fff;
}

/* Subtítulo */
.header-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Links simples */
.header-links {
  display: flex;
  gap: 15px;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.header-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.header-link:hover {
  opacity: 0.8;
  color: #fff;
}

.header-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Cards Section */
.cards-section {
  background: linear-gradient(135deg, #2227ab 0%, #1a1f8a 50%, #2227ab 100%);
  padding: 50px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Efeito de formas geométricas no fundo */
.cards-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.cards-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.cards-section .container {
  position: relative;
  z-index: 1;
}

.bg-card-info {
  border: none;
  border-radius: 10px;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-card-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.bg-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 20px;
}

.bg-card-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.bg-card-info .card-text {
  font-size: 1rem;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-hero {
    height: 100vh;
    min-height: 500px;
  }

  .header-title {
    font-size: 2.8rem;
  }

  .header-subtitle {
    font-size: 1rem;
    max-width: 95%;
  }

  .header-shape-1 {
    width: 300px;
    height: 300px;
  }

  .header-shape-2 {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .header-hero {
    height: 100vh;
    min-height: 450px;
    background-attachment: scroll;
  }

  .header-title {
    font-size: 2.2rem;
  }

  .header-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .header-links {
    flex-direction: row;
  }

  .header-shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
  }

  .header-shape-2 {
    width: 200px;
    height: 200px;
  }

  .header-shape-3 {
    display: none;
  }

  .cards-section {
    padding: 30px 0;
  }

  .bg-card-info {
    min-height: 160px;
  }
}

@media (max-width: 576px) {
  .header-hero {
    height: 100vh;
    min-height: 400px;
  }

  .header-title {
    font-size: 1.8rem;
  }

  .header-subtitle {
    font-size: 0.9rem;
  }

  .header-link {
    font-size: 0.9rem;
  }

  .header-shape-1 {
    width: 200px;
    height: 200px;
  }

  .header-shape-2 {
    width: 150px;
    height: 150px;
  }

  .cards-section {
    padding: 25px 0;
  }

  .bg-card-info {
    min-height: 150px;
    padding: 15px;
  }

  .bg-card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }

  .bg-card-icon i {
    font-size: 1.3rem;
  }

  .bg-card-info .card-text {
    font-size: 0.9rem;
  }
}



.bg-light-gray {
  background-color: #eaeaea; /* Cor de fundo clara */
}


/* products */
.zoom-container {
  position: relative;
  overflow: hidden; /* Garante que o zoom não ultrapasse os limites */
}

.zoom-image {
  transition: transform 0.2s ease-in-out; /* Suaviza o zoom */
  transform-origin: center center; /* Padrão */
}

.zoom-container:hover .zoom-image {
  transform: scale(3.2); /* Define o nível de zoom */
}

.zoom-container {
  cursor: crosshair; /* Opcional: altera o cursor ao passar o mouse */
}