/* Versão 1.0.0 */

.warranty-card {
  background: linear-gradient(145deg, var(--color-gray), var(--bg-primary));
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.warranty-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(12, 255, 185, 0.2), rgba(0, 179, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.warranty-icon i {
  font-size: 2rem;
  background: linear-gradient(90deg, #0cffb9, #00b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline-container {
  position: relative;
  padding-left: 3rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #0cffb9, #00b3ff);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -33px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--color-neon);
  z-index: 10;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-neon);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.garantia .faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.garantia .faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.gradient-border {
  position: relative;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(90deg, #0cffb9, #00b3ff);
}

.gradient-border-inner {
  background-color: var(--bg-primary);
  border-radius: 11px;
  padding: 2rem;
}

.garantia-section-title {
  border-bottom: 1px solid var(--border-color);
}

.garantia-exclusion-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.garantia-tip-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.text-secondary-theme {
  color: var(--text-secondary);
}
