@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

:root {
  --bg-900: #121212;
  --bg-800: #262626;
  --line-600: #363636;
  --text-100: #f5f7fa;
  --text-300: #c8d0d7;
  --muted: #6b6e71;
  --acc-500: #34d399;
  --acc-600: #10b981;
  --radius-xl: 18px;
  --ff-display: "Anton", system-ui, sans-serif;
  --ff-sans: "Inter", system-ui, sans-serif;
  --container: min(1400px, 92vw);
  --overlay: rgba(11, 13, 15, 0.6); /* bg-garage-dark/60 */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --wa-size: 56px; /* tamaño del botón */
  --wa-gap: 16px; /* separación del borde */
  --wa-color: #25d366; /* verde WhatsApp */
  --wa-gradient: linear-gradient(
    135deg,
    #34d399,
    #10b981
  ); /* acorde a tu tema */
  --wa-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
body {
  font-family: var(--ff-sans);
}
/* Header base */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease,
    backdrop-filter 0.3s ease;
  background: transparent;
}
.site-header[data-scrolled="true"] {
  background: rgba(11, 15, 14, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-600);
}

.site-header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

/* Marca */
.brand {
  border: none;
  background: transparent;
  color: var(--text-100);
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.brand__accent {
  color: var(--acc-500);
}
.brand:hover {
  color: var(--acc-500);
}

/* Navegación */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav--desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav--desktop {
    display: flex;
  }
}

.nav__link {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--text-300);
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: var(--text-100);
}
.nav__link--block {
  text-align: left;
  padding: 8px 0;
}

/* Toggle móvil */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-100);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.icon--close {
  display: none;
}

/* Menú móvil */
.nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 24px 16px;
  width: var(--container);
  margin-inline: auto;
}
.nav--mobile[hidden] {
  display: none !important;
}

/* Estado del botón según menú */
.nav-toggle[aria-expanded="true"] .icon--menu {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon--close {
  display: block;
}
.nav-toggle[aria-expanded="false"] .icon--menu {
  display: block;
}
.nav-toggle[aria-expanded="false"] .icon--close {
  display: none;
}

/* HERO BASE */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--text-100);
  font-family: "Anton", sans-serif;
}

/* Fondo */
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* Contenido */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

/* Título */
.hero__title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease forwards;
}

/* Subtítulo */
.hero__subtitle {
  font-family: "Inter", sans-serif;
  color: var(--text-300);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Botones */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
}

.btn--hero {
  background: linear-gradient(135deg, var(--acc-500), var(--acc-600));
  color: #0a0f0a;
  border: none;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 1);
  color: var(--text-100);
}
.btn--outline:hover {
  background: #fff;
  color: #000;
}

/* Íconos */
.icon,
.icon-chevron {
  width: 1.4rem;
  height: 1.4rem;
}

/* Indicador de scroll */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.icon-chevron {
  color: var(--text-300);
}

/* ANIMACIONES */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Sección Manifesto */
.manifesto {
  background: var(--bg-900);
  padding: clamp(56px, 8vw, 96px) 24px; /* py-24 px-6 approx */
  color: var(--text-100);
}

.manifesto__container {
  width: var(--container);
  margin-inline: auto;
  max-width: 72rem; /* ~max-w-6xl */
}

.manifesto__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 64px); /* text-4xl → 6xl */
  text-transform: uppercase;
}

.manifesto__text {
  font-family: var(--ff-sans);
  color: var(--text-300); /* text-muted-foreground */
  font-size: clamp(18px, 2.2vw, 20px); /* text-lg → md:text-xl */
  line-height: 1.75; /* leading-relaxed */
  max-width: 48rem; /* ~max-w-3xl */
  margin: 0;
}

/* Sección */
.services {
  background: var(--bg-800); /* bg-garage-charcoal equivalente */
  padding: clamp(56px, 8vw, 96px) 24px; /* py-24 px-6 */
}
.services__container {
  width: var(--container);
  margin-inline: auto;
  max-width: 80rem;
}
.services__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 64px);
}
.services__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.services__rule {
  width: 96px;
  height: 4px;
  margin: 0 auto;
  background: var(--acc-500);
  border-radius: 999px;
}

/* Lista */
.services__list {
  display: grid;
  gap: clamp(32px, 5vw, 96px);
}

/* Item */
.service {
  display: grid;
  gap: 3em;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
@media (max-width: 900px) {
  .service,
  .service--reverse {
    grid-template-columns: 1fr;
  }
}

/* Media */
.service__media {
  border: 1px solid var(--line-600);
  overflow: hidden;
  background: #0f1317;
}
.service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* aspect-square */
  transform: translateZ(0); /* reduce jank */
  transition: transform 0.5s ease;
}
.service__img:hover {
  transform: scale(1.05);
}

/* Body */
.service__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.service__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--acc-500) 12%, transparent);
  display: grid;
  place-items: center;
}
.service__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--acc-500);
  stroke-width: 1.8;
}

.service__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.service__desc {
  font-family: var(--ff-sans);
  color: var(--text-300);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.7;
  margin: 0;
}

/* Sección full-bleed 70vh */
.fullbleed {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  color: var(--text-100);
}

/* Fondo e imagen */
.fullbleed__bg {
  position: absolute;
  inset: 0;
}
.fullbleed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fullbleed__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* Contenido centrado */
.fullbleed__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 24px;
}

/* Título */
.fullbleed__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 64px); /* text-4xl → lg:text-6xl */
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

/* Sección */
.pricing {
  background: var(--bg-900);
  padding: clamp(56px, 8vw, 96px) 24px;
}
.pricing__container {
  width: var(--container);
  margin-inline: auto;
  max-width: 80rem;
}
.pricing__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 64px);
}
.pricing__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.pricing__lead {
  color: var(--muted);
  font-family: var(--ff-sans);
  font-size: clamp(16px, 2.2vw, 18px);
  margin: 0 auto;
  max-width: 42rem;
}

/* Grid */
.pricing__grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0)
  );
  border: 1px solid var(--line-600);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: scale(1.03);
  border-color: var(--acc-500);
}
.pricing-card--popular {
  border-width: 2px;
  border-color: var(--acc-500);
}
.pricing-card__badge {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--acc-500), var(--acc-600));
  color: #0b0f0d;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--ff-sans);
}

/* Headings & price */
.pricing-card__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 8px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 20px;
}
.pricing-card__amount {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--acc-500);
}
.pricing-card__currency {
  color: var(--muted);
  font-family: var(--ff-sans);
}

/* Features */
.pricing-card__features {
  list-style: none;
  padding: 50px 0;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature__icon {
  width: 20px;
  height: 20px;
  color: var(--acc-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature__text {
  color: var(--muted);
  font-family: var(--ff-sans);
  font-style: 14px;
}
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* Sección */
.gallery {
  background: var(--bg-800);
  padding: clamp(56px, 8vw, 96px) 24px; /* py-24 px-6 */
}
.gallery__container {
  width: var(--container);
  margin-inline: auto;
  max-width: 80rem;
}

/* Head */
.gallery__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 64px);
}
.gallery__title {
  font-family: "Anton", system-ui, sans-serif;
  color: var(--text-100);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.gallery__lead {
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(16px, 2.2vw, 18px);
}

/* Grid */
.gallery__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Item */
.gallery__item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--bg-900);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.5s ease;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

/* Overlay */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlayText {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid #ffffff44;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Lightbox */
.lightbox[hidden] {
  display: none !important;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 16px;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}
.lightbox__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ffffff33;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.icon {
  width: 24px;
  height: 24px;
}

.lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  opacity: 0.85;
  font-family: "Inter", system-ui, sans-serif;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--bg-900);
  padding: clamp(56px, 8vw, 96px) 24px;
}
.testimonials__container {
  width: var(--container);
  margin-inline: auto;
  max-width: 80rem;
}

.testimonials__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 64px);
}
.testimonials__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.testimonials__lead {
  color: var(--muted);
  font-family: var(--ff-sans);
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(16px, 2.2vw, 18px);
}

.testimonials__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tcard {
  background: var(--bg-800);
  border: 1px solid var(--line-600);
  border-radius: 4px;
  padding: 35px;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(12px);
  animation-delay: var(--delay, 0ms);
  font-family: var(--ff-sans);
}
.tcard__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.star {
  --s: 20px;
  width: var(--s);
  height: var(--s);
  fill: #10b981;
}
.tcard__text {
  color: var(--text-100);
  line-height: 1.75;
  margin: 0 0 16px;
}
.tcard__meta {
  border-top: 1px solid var(--line-600);
  padding-top: 12px;
}
.tcard__name {
  color: var(--text-100);
  font-weight: 600;
  margin: 0;
}
.tcard__car {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-900);
  border-top: 1px solid var(--line-600);
  color: var(--text-300);
}
.site-footer__container {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 1fr;
  padding: 32px 24px;
}
@media (min-width: 900px) {
  .site-footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
}

.site-footer__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.site-footer__title span {
  color: var(--acc-500);
}
.site-footer__tag {
  margin: 0;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-self: center;
  justify-content: center;
}
.fnav__link {
  color: var(--text-300);
  text-decoration: none;
  font-family: var(--ff-sans);
  transition: color 0.2s ease;
}
.fnav__link:hover {
  color: var(--text-100);
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__bottom {
  text-align: center;
  padding: 14px 24px;
  color: var(--muted);
}

.wa-sticky {
  position: fixed;
  right: calc(env(safe-area-inset-right, 0px) + var(--wa-gap));
  bottom: calc(env(safe-area-inset-bottom, 0px) + var(--wa-gap));
  width: var(--wa-size);
  height: var(--wa-size);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #0b0f0d;
  background: var(--wa-gradient); /* usa gradiente del tema */
  box-shadow: var(--wa-shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 60;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
  animation: wa-pulse 1.8s ease-in-out 1.2s 1; /* un solo pulso inicial */
}
.wa-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.36);
}

.wa-sticky__icon {
  width: 30px;
  height: 30px;
  fill: #000000;
}

/* Oculta en impresión */
@media print {
  .wa-sticky {
    display: none !important;
  }
}

/* Pulso sutil */
@keyframes wa-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

/* Wrapper */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-900);
  border-top: 1px solid #09412e; /* border-emerald/20 */
  color: var(--text-300);
}

/* Overlay gradiente superior */
.footer__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(52, 211, 153, 0.05), transparent);
}

/* Container */
.footer__container {
  width: var(--container);
  max-width: 80rem;
  margin-inline: auto;
  padding: 64px 24px;
  position: relative;
}

/* Grid 4 cols → 1 col en móvil */
.footer__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Brand */
.footer__logo {
  font-family: var(--ff-display);
  color: var(--acc-500);
  font-size: 24px;
  margin: 0 0 10px;
}
.footer__tag {
  color: var(--muted);
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Column heading */
.footer__title {
  font-family: var(--ff-display);
  color: var(--text-100);
  font-size: 18px;
  margin: 0 0 14px;
}

/* Links */
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer__link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--emerald);
}

/* Contact */
.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__contactItem {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}
.footer__muted {
  color: var(--muted);
}

/* Social */
.footer__social {
  display: flex;
  gap: 16px;
}
.socialBtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--bg-800);
  border: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.18s ease,
    color 0.2s ease;
}
.socialBtn:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  transform: translateY(-2px);
}
.icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
}
.socialBtn:hover .icon {
  color: var(--bg-900); /* group-hover:text-garage-dark */
}
.icon--sm {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Bottom bar */
.footer__bottom {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer__legal {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.footer__legalLinks {
  display: flex;
  gap: 24px;
}
.footer__legalLinks .footer__link {
  font-size: 14px;
}

/* Decorative gradient line */
.footer__line {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    text-align: left;
  }
}
