/* Components CSS BMW - PASSION AUTO 85 */

.btn,
button,
input[type="submit"],
input[type="button"],
[role="button"] {
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

.cta-button {
  position: relative;
  padding: 1rem 2.5rem;
  background: var(--bmw-blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
  background: rgba(30, 144, 255, 0.9);
}

.cta-button:active {
  transform: translateY(0);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover .button-glow {
  left: 100%;
}

.card-title-bmw {
  font-family: var(--font-primary);
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
  transition: color 0.3s ease;
}

.card-title-bmw:hover {
  color: #87ceeb;
}

.card-paragraph-bmw {
  font-family: var(--font-secondary);
  font-size: 1em;
  color: rgba(192, 192, 192, 0.95);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 1rem auto;
  max-width: 600px;
}

.subtitle-bmw {
  margin: var(--spacing-xl) auto var(--spacing-md) auto;
}

.subtitle-bmw-small {
  margin: var(--spacing-lg) auto var(--spacing-sm) auto;
}

.paragraph-bmw {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}
