* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0f0f0f;
  color: #e5e5e5;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("images/hero-car.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #b0b0b0;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
}

.primary {
  background: #e5e5e5;
  color: #0f0f0f;
}

.primary:hover {
  background: #ffffff;
}

.secondary {
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
}

.secondary:hover {
  background: #e5e5e5;
  color: #0f0f0f;
}

/* SERVICES */
.services {
  padding: 6rem 10%;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* CONTACT */
.contact {
  padding: 5rem 10%;
  text-align: center;
  background: #141414;
}

.contact h2 {
  margin-bottom: 1rem;
}
.logo {
  width: 260px;
  height: auto;
  margin-bottom: 24px;

  /* FORZAR A BLANCO */
  filter: invert(1) brightness(2);
}


/* Animación del logo */
.logo-anim {
  opacity: 0;
  transform: translateY(14px);
  animation: logoIntro 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}

@keyframes logoIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respeta usuarios con motion reducido */
@media (prefers-reduced-motion: reduce) {
  .logo-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.subtitle {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.35s;
}

.cta-buttons {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.55s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

