:root {
  --citroen-red: #c1002a;
  --dark: #111111;
  --dark-2: #1b1b1b;
  --light: #f6f5f2;
  --muted: #6b6b6b;
  --accent: #ffb800;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--dark);
  background: radial-gradient(circle at top, #ffffff 0%, #f6f5f2 60%, #efece6 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 32px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -50%;
  height: 520px;
  background: radial-gradient(circle, rgba(193, 0, 42, 0.18), transparent 70%);
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 14px 0;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--citroen-red);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--citroen-red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(193, 0, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(193, 0, 42, 0.4);
}

.btn-outline {
  border-color: var(--citroen-red);
  color: var(--citroen-red);
  background: #fff;
}

.btn-ghost {
  border-color: transparent;
  color: var(--dark);
  background: rgba(0, 0, 0, 0.06);
}

.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust strong {
  font-size: 1.3rem;
  color: var(--dark);
  font-family: "Space Grotesk", sans-serif;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 17, 17, 0.86);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  max-width: 220px;
}

.hero-card-title {
  font-weight: 600;
}

.section {
  padding: 72px 20px;
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 36px;
}

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
  max-width: 540px;
}

.value-grid,
.cards-grid,
.social-grid {
  display: grid;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-item,
.card,
.social-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
}

.value-item .icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(193, 0, 42, 0.12);
  color: var(--citroen-red);
  font-weight: 700;
  margin-bottom: 14px;
}

.services {
  background: #ffffff;
}

.services-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-list li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.services-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta {
  padding-top: 40px;
}

.cta-card {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 60%, #3d3d3d 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.social-grid {
  grid-template-columns: 1fr;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
}

.footer {
  padding: 40px 20px 60px;
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .value-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-content {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .cta-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-actions {
    justify-items: start;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 96px 20px;
  }

  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    padding-top: 48px;
  }
}
