/* Componentes essenciais - Dark Theme */
.logo-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7, #00d9ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 3px;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: shine 4s infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes shine {
  to { transform: translateX(100%); }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3),
              0 0 20px rgba(123, 47, 247, 0.2);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::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.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4),
              0 0 40px rgba(123, 47, 247, 0.3);
}

.cta-button:active {
  transform: translateY(-2px) scale(1);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.3);
}

.icon-minimal {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(123, 47, 247, 0.15));
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
  transition: all 0.3s;
}

.card:hover .icon-minimal {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.25), rgba(123, 47, 247, 0.25));
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  transform: scale(1.05);
}

.icon-minimal svg {
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
}

.step-number svg {
  width: 30px;
  height: 30px;
  color: white;
}

.accordion-item {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
}

.accordion-header {
  padding: 1.8rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.accordion-body a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.accordion-body a:hover {
  color: var(--accent-secondary);
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--accent-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(0, 217, 255, 0.1);
}

.review-author {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.review-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .logo-container {
    font-size: 0.95rem;
    gap: 8px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .logo-icon::before {
    border-left: 9px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

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

@media (max-width: 480px) {
  .logo-container {
    font-size: 0.85rem;
    gap: 6px;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .logo-icon::before {
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 1px;
  }

  .cta-button {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

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

  .card {
    padding: 2rem;
  }

  .review-card {
    padding: 1.8rem;
  }
}
