/* =============================================================
   J'NDALI TRANSPORT & MULTISERVICIOS
   Brand: rojo #E31E24 · negro #111111 · blanco #FFFFFF
   Tipografía: Barlow Condensed (títulos) + Barlow (texto)
   ============================================================= */

:root {
  --red: #E31E24;
  --red-dark: #C41920;
  --black: #111111;
  --gray-900: #222222;
  --gray-700: #555555;
  --gray-600: #666666;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #BBBBBB;
  --gray-200: #CCCCCC;
  --gray-100: #EEEEEE;
  --gray-50: #F8F8F8;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --instagram: #E1306C;
  --radius: 0.4rem;
  --radius-sm: 0.25rem;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 6px 20px rgba(227, 30, 36, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(227, 30, 36, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.2);
  border-left: 3px solid var(--red);
  padding: 0.3rem 0.8rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.eyebrow-mark {
  color: var(--red);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  transition: all 180ms var(--ease);
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-white:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.27s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.39s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: 0.51s; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  transition: all 250ms ease;
}
.navbar.scrolled {
  border-bottom-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--red); }
.brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  color: var(--gray-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 180ms ease, background-color 180ms ease;
}
.nav-links a:hover {
  color: var(--red);
  background: rgba(227, 30, 36, 0.06);
}

.nav-phone {
  display: none;
  font-size: 0.88rem;
  padding: 0.6rem 1.2rem;
}

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--black);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid #F0F0F0;
  display: block;
}
.mobile-menu .btn { margin-top: 0.85rem; width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ── Hero ── */
.hero {
  background: var(--white);
  padding-top: 72px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-topbar {
  width: 100%;
  height: 4px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob.one {
  top: -6rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  background: rgba(227, 30, 36, 0.06);
}
.hero-blob.two {
  top: 2rem;
  right: 2rem;
  width: 14rem;
  height: 14rem;
  background: rgba(227, 30, 36, 0.04);
}
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--black);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.hero h2 {
  font-weight: 900;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  color: var(--red);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.hero h3 {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.8rem);
  color: var(--gray-500);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  border-left: 4px solid var(--red);
  padding-left: 0.75rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 500;
}
.hero-highlights svg { color: var(--red); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.hero-stats .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.hero-stats .label {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}
.hero-photo-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.hero-photo-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 20%;
}
.hero-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
}
.hero-photo-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.hero-photo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-discount {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--red);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  z-index: 3;
  text-align: center;
}
.hero-discount .pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
}
.hero-discount .off {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
}
.hero-corner {
  position: absolute;
  top: -0.6rem;
  left: -0.6rem;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm) 0 0 0;
}

.scroll-cue {
  text-align: center;
  padding-bottom: 1.5rem;
}
.scroll-cue a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--gray-300);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-cue svg { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Section shared ── */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
.section-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}
.section-gray { background: var(--gray-50); }
.section-white { background: var(--white); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-head h2 span { color: var(--red); }
.section-head p {
  color: var(--gray-500);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 250ms var(--ease);
}
.service-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray-200);
  margin-bottom: 0.75rem;
}
.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(227, 30, 36, 0.08);
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--red);
}
.service-card h3 {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

.discount-banner {
  margin-top: 3rem;
  background: var(--red);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.discount-banner .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.discount-banner .shape.a { right: -2rem; top: -2rem; width: 10rem; height: 10rem; transform: rotate(45deg); }
.discount-banner .shape.b { right: 6rem; bottom: -3rem; width: 7rem; height: 7rem; background: rgba(255,255,255,0.04); transform: rotate(30deg); }
.discount-banner-text { position: relative; z-index: 1; }
.discount-banner-text .headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
}
.discount-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-top: 0.3rem;
}
.discount-banner .btn-white {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 160ms ease;
}
.discount-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 780px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about-media { position: relative; }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 15%;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--red);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
  z-index: 2;
}
.about-badge .pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.about-badge .off {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.about h2 span { color: var(--red); }
.about p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.about-checklist svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
  flex: 1 1 130px;
  color: var(--red);
}
.value-pill .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  line-height: 1;
}
.value-pill .desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* ── Gallery ── */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.gallery-item.wide { aspect-ratio: 16/11; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(227, 30, 36, 0.12);
  opacity: 0;
  transition: opacity 300ms ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-code {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.55rem;
  border-radius: 0.2rem;
  z-index: 1;
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.gallery-label .bar {
  width: 3px;
  height: 1.1rem;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.gallery-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* ── Trust ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.trust-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 250ms var(--ease);
  overflow: hidden;
}
.trust-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.12);
}
.trust-num {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: rgba(227, 30, 36, 0.05);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--red);
}
.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(227, 30, 36, 0.08);
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.trust-card h3 {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.trust-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Quote / Contact ── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 780px) {
  .quote-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.quote-info h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.quote-info h2 span { color: var(--red); }
.quote-info > p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  border: 1.5px solid;
  border-left-width: 3px;
  transition: transform 200ms ease;
}
.contact-method:hover { transform: translateX(4px); }
.contact-method .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1;
}
.contact-method .sub {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}
.contact-method svg { flex-shrink: 0; }

.contact-method.phone { background: rgba(227,30,36,0.06); border-color: rgba(227,30,36,0.25); color: var(--red); }
.contact-method.wa { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.3); color: var(--whatsapp); }
.contact-method.ig { background: rgba(225,48,108,0.06); border-color: rgba(225,48,108,0.3); color: var(--instagram); }

.quote-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-top: 4px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.quote-form-wrap h3 {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1;
}
.quote-form-wrap .form-sub {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.input-light {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 180ms ease;
}
.input-light:focus {
  border-color: var(--red);
  background: var(--white);
}
.input-light::placeholder { color: var(--gray-300); }
textarea.input-light { resize: vertical; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 0.25rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 0.9rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}
.form-success.show { display: block; }
.quote-form.hide { display: none; }
.form-success-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--red);
}
.form-success h3 {
  font-weight: 900;
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.form-success .btn { margin-top: 1.5rem; }

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
}
.footer-top-bar {
  height: 4px;
  background: var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer p.tagline {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer .socials { display: flex; gap: 0.6rem; }
.footer .social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.85;
  transition: transform 200ms ease, opacity 200ms ease;
  color: var(--white);
}
.footer .social-btn:hover { transform: scale(1.1); opacity: 1; }
.footer .social-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer .social-btn.wa { background: var(--whatsapp); }

.footer h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--red);
  padding-left: 0.6rem;
}
.footer-services li { margin-bottom: 0.5rem; }
.footer-services a {
  color: var(--gray-400);
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 180ms ease;
}
.footer-services a:hover { color: var(--red); }
.footer-services a::before { content: "▶"; color: var(--red); font-size: 0.65rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: color 180ms ease;
}
.footer-contact a:hover { color: var(--red); }
.footer-contact svg { color: var(--red); flex-shrink: 0; }

.footer-cta p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-cta .btns { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-cta .btn { justify-content: center; }

.footer-discount {
  margin-top: 1.5rem;
  background: rgba(227, 30, 36, 0.12);
  border: 1px solid rgba(227, 30, 36, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.footer-discount .pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.footer-discount .off {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.footer-discount p {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-bottom p {
  color: #555555;
  font-size: 0.78rem;
}
.footer-bottom .badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 300ms var(--ease);
}
.wa-float.show { opacity: 1; transform: scale(1); }
.wa-tooltip {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  position: relative;
  display: none;
  animation: fadeInUp 300ms ease;
}
.wa-tooltip.show { display: block; }
.wa-tooltip button {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: none;
  border: none;
  color: var(--gray-300);
  padding: 0.1rem;
  display: flex;
}
.wa-tooltip p {
  font-size: 0.82rem;
  color: var(--gray-900);
  line-height: 1.5;
  padding-right: 0.75rem;
}
.wa-tooltip strong { color: var(--red); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-button {
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 200ms var(--ease);
  position: relative;
}
.wa-button:hover { transform: scale(1.1); }
.wa-button .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-highlights { grid-template-columns: 1fr; }
  .about-checklist { grid-template-columns: 1fr; }
}
