/* ========== SERVIÇOS EXCLUSIVOS (PREMIUM) ========== */
.financial-services {
  background: rgba(8, 9, 62, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin: 4rem 0;
  border: 1px solid rgba(255, 4, 1, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ========== CARDS DE SERVIÇOS ========== */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.highlight {
  border: 1px solid rgba(255, 4, 1, 0.3);
  background: rgba(8, 9, 62, 0.2);
}

/* Ícones dos Serviços */
.service-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 4, 1, 0.1);
  border-radius: 20px;
  transition: all 0.4s;
  position: relative;
}

.service-card:hover .service-icon-container {
  transform: scale(1.15) rotate(5deg);
  background: rgba(255, 4, 1, 0.2);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--primary-accent);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Conteúdo dos Serviços */
.service-content {
  text-align: center;
  margin-bottom: 2rem;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--pure-white);
  position: relative;
  padding-bottom: 0.8rem;
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-accent);
}

.service-description {
  font-size: 1rem;
  color: var(--secondary-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--secondary-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}

.service-features li i {
  color: var(--primary-accent);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ========== BOTÕES PREMIUM ========== */
.service-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-btn {
  position: relative;
  padding: 1rem 1.8rem;
  border-radius: 10px;
  background: var(--gradient-accent);
  color: var(--pure-white);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.4s;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(255, 4, 1, 0.25);
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d40000, #FF0401);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.service-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 4, 1, 0.35);
}

.service-btn:hover::before {
  opacity: 1;
}

.service-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Botão Secundário */
.service-btn.secondary {
  background: transparent;
  color: var(--primary-accent);
  border: 1px solid rgba(255, 4, 1, 0.3);
  box-shadow: none;
}

.service-btn.secondary::before {
  background: rgba(255, 4, 1, 0.1);
}

.service-btn.secondary:hover {
  background: rgba(255, 4, 1, 0.15);
  box-shadow: 0 5px 15px rgba(255, 4, 1, 0.2);
}

/* Badges e Tags */
.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-accent);
  color: var(--pure-white);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 3px 10px rgba(255, 4, 1, 0.3);
  z-index: 2;
}

.service-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 168, 89, 0.15);
  color: #00A859;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 168, 89, 0.3);
}

/* Efeitos Especiais */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.service-card:hover {
  animation: float 3s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 1200px) {
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .financial-services {
    padding: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .financial-services {
    padding: 2rem;
    margin: 3rem 0;
  }
  
  .service-icon-container {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .financial-services {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.8rem;
  }
  
  .service-btn {
    padding: 0.9rem;
    font-size: 0.95rem;
  }
}
