body {
  padding-top: 72px;

}



/* -----------------------------------
   HERO – TSCHANZ MOTORS
----------------------------------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;

  display: flex;
  align-items: center;

  background: var(--color-bg);
  overflow: hidden;
}

/* Imagen de fondo */
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* Contenido */
.hero-content {
  position: relative;

  display: flex;
  align-items: center;

  padding: var(--space-16) var(--space-16);
}

/* Texto */
.hero-text {
  max-width: 720px;

  display: flex;
  flex-direction: column;
  gap: var(--space-6);

  color: var(--color-text);
}

/* Eyebrow */
.hero-eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* H1 */
.hero-text h1 {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
}

/* Párrafo */
.hero-text p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-text-dark);
  max-width: 620px;
}

/* Acciones */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-text h1 {
    font-size: var(--text-3xl);
  }

  .hero-text p {
    font-size: var(--text-base);
  }

  .hero-content {
    padding: var(--space-12) var(--space-5);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: var(--text-2xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* -----------------------------------
   VEHÍCULOS EN VENTA
----------------------------------- */

.vehicles-section {
  background: var(--color-bg-light);
  padding: var(--space-16) var(--space-6);
}

.vehicles-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* Header */
.vehicles-header {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.vehicles-header h2 {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-white);
}

.vehicles-header p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Listado */
.vehicles-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
}

/* Card */
.vehicle-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;

  width: calc(25% - var(--space-6));
}

/* Imagen */
.vehicle-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.04);
}

/* Info */
.vehicle-info {
  padding: var(--space-5);

  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.vehicle-info h3 {
  font-family: var(--font-title);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-white);
}

.vehicle-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.vehicle-price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
}

/* Acciones */
.vehicle-actions {
  margin-top: var(--space-3);

  display: flex;
  align-items: center;
  gap: var(--space-3);

  flex-direction: column;
}

.vehicle-actions a{
  width: 100%;
}

/* CTA sección */
.vehicles-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

/* Responsive */
@media (max-width: 1024px) {
  .vehicle-card {
    width: calc(50% - var(--space-6));
  }
}

@media (max-width: 640px) {
  .vehicle-card {
    width: 100%;
  }

  .vehicle-image {
    height: 180px;
  }

  .vehicles-header h2 {
    font-size: var(--text-2xl);
  }
}








/* -----------------------------------
   POR QUÉ ELEGIR TSCHANZ MOTORS
----------------------------------- */

.why-tschanz {
  background: var(--color-bg);
  padding: var(--space-16) var(--space-6);
}

.why-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* Header */
.why-header {
  max-width: 720px;

  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.why-header h2 {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-white);
}

.why-header p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Lista */
.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
}

/* Item */
.why-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);

  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  width: calc(25% - var(--space-6));
  box-shadow: var(--shadow-soft);
}

/* Icono */
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-accent);
  color: var(--color-black);

  font-size: 1.2rem;
}

/* Título */
.why-item h3 {
  font-family: var(--font-title);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-white);
}

/* Texto */
.why-item p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-item {
    width: calc(50% - var(--space-6));
  }
}

@media (max-width: 640px) {
  .why-item {
    width: 100%;
  }

  .why-header h2 {
    font-size: var(--text-2xl);
  }
}




/* -----------------------------------
   COMPROMISO TSCHANZMOTORS
----------------------------------- */

.brand-commitment {
  padding: var(--space-16) var(--space-10);
  background: var(--color-bg-light);
}

.commitment-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Texto */
.commitment-text {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    justify-content: center;
    align-items: center;
}

/* Título */
.commitment-text h2 {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

/* Intro */
.commitment-intro {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Divider */
.commitment-divider {
  width: 100px;
  height: 2px;
  background: var(--color-accent);
  
}

/* Lista */
.commitment-points {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.commitment-points li {
  position: relative;
  padding-left: var(--space-5);

  font-size: var(--text-base);
  color: var(--color-white);
}



/* Responsive */
@media (max-width: 768px) {
  .commitment-text h2 {
    font-size: var(--text-3xl);
  }

  .commitment-container {
    justify-content: center;
  }
}










/* -----------------------------------
   PROCESO DE COMPRA
----------------------------------- */

.purchase-process {
  background: var(--color-bg-alt);
  padding: var(--space-16) var(--space-6);
}

.process-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* Header */
.process-header {
  max-width: 680px;

  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.process-header h2 {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-white);
}

.process-header p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Steps */
.process-steps {
  display: flex;
  gap: var(--space-6);
}

/* Step */
.process-step {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);

  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  width: 25%;
  box-shadow: var(--shadow-soft);
}

/* Number */
.step-number {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);

  font-family: var(--font-title);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Content */
.step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Icon */
.step-content i {
  font-size: 1.3rem;
  color: var(--color-accent);
}

/* Title */
.step-content h3 {
  font-family: var(--font-title);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-white);
}

/* Text */
.step-content p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    width: calc(50% - var(--space-3));
  }
}

@media (max-width: 640px) {
  .process-step {
    width: 100%;
  }

  .process-header h2 {
    font-size: var(--text-2xl);
  }
}









/* -----------------------------------
   CTA FINAL
----------------------------------- */

.final-cta {
  padding: var(--space-20) 0;
  background: linear-gradient(
    180deg,
    var(--color-bg-light),
    var(--color-bg)
  );

  padding: var(--space-16) var(--space-8);

}

.final-cta-container {
  display: flex;
  justify-content: center;
}

.final-cta-content {
  max-width: 720px;
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Título */
.final-cta-content h2 {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-white);
}

/* Texto */
.final-cta-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Acciones */
.final-cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-content h2 {
    font-size: var(--text-3xl);
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
