/* ===========================
   SAP Logistica — STYLESHEET (LIGHT)
   Paleta: Azul SAP Logística
   =========================== */

:root {
  /* PALETA PRINCIPAL */
  --navy: #0f1444;
  --blue: #1a3faa;
  --blue-mid: #2352c8;
  --blue-light: #dce8ff;
  --blue-muted: rgba(26, 63, 170, 0.10);

  /* NEUTROS LIGHT */
  --white: #ffffff;
  --bg: #f2f4f9;
  --bg-card: #ffffff;
  --bg-section: #eef1f8;
  --border: #d4daf0;
  --border-mid: #b4bfde;

  /* TEXTO */
  --text: #0f1444;
  --text-mid: #3a4680;
  --text-soft: #6b7ab5;
  --text-muted: #96a3c8;

  /* ESTADO */
  --green: #16a34a;
  --green-bg: rgba(22, 163, 74, 0.10);
  --red: #dc2626;
  --red-bg: rgba(220, 38, 38, 0.10);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(15, 20, 68, 0.08);
  --shadow-md: 0 6px 32px rgba(15, 20, 68, 0.12);
  --shadow-lg: 0 16px 56px rgba(15, 20, 68, 0.18);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

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

.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

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

/* ===========================
     NAVBAR
     =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  font-size: 1.2rem;
  color: var(--blue);
}

.logo-img {
  width: 30%;
}

.logo-accent {
  color: var(--blue);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.btn-admin {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  transition: all var(--transition);
}

.btn-admin:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-muted);
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE OVERLAY (backdrop) === */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 68, 0.45);
  backdrop-filter: blur(3px);
  z-index: 90;
}

.mobile-menu-overlay.open {
  display: block;
}

/* ===========================
     HERO
     =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--navy) 0%, #1a2a7a 55%, #1e4abf 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 75% 45%, rgba(100, 160, 255, 0.18) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #a8c8ff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ab8ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s both;
}

.hero-accent {
  color: #7ab8ff;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s both;
}

/* SEARCH BOX */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  max-width: 860px;
  animation: fadeUp 0.7s 0.3s both;
  backdrop-filter: blur(12px);
}

.search-field {
  flex: 1;
  padding: 0.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7ab8ff;
}

.search-field input,
.search-field select {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
}

.search-field select option {
  background: var(--navy);
  color: var(--white);
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 0.9rem 1.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
  border: none;
}

.btn-search:hover {
  background: var(--blue-light);
  transform: scale(1.02);
}

/* HERO STATS */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 2rem;
}

.stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===========================
     SECTION HEADERS
     =========================== */
.section-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-muted);
  border: 1px solid var(--blue-light);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
  flex: 1;
}

/* WHY US */
.why-us {
  padding: 5rem 0;
  background: var(--bg-section);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.featured-section {
  padding: 5rem 0;
  background: var(--white);
}

/* RATINGS */
.ratings-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.reviewer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===========================
     CAR CARDS
     =========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.car-card-unavailable {
  opacity: 0.65;
}

.car-banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.car-banner-emoji {
  font-size: 5.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
  z-index: 1;
}

.car-card:hover .car-banner-emoji {
  transform: scale(1.08) rotate(-2deg);
}

.banner-blue {
  background: linear-gradient(135deg, #dce8ff 0%, #b8d0ff 100%);
}

.banner-red {
  background: linear-gradient(135deg, #ffe0e0 0%, #ffb8b8 100%);
}

.banner-green {
  background: linear-gradient(135deg, #d4f8e8 0%, #a8edcc 100%);
}

.banner-gold {
  background: linear-gradient(135deg, #fff4d0 0%, #ffe080 100%);
}

.banner-gray {
  background: linear-gradient(135deg, #eef1f8 0%, #d4daf0 100%);
}

.car-badge-type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.25rem 0.6rem;
}

.car-availability {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}

.available {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.unavailable {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.car-rating {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d97706;
  padding: 0.25rem 0.55rem;
}

.car-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.car-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.car-year {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
}

.car-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

.spec-icon {
  font-size: 0.9rem;
}

.car-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}

.price-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.car-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
}

.btn-card-primary {
  flex: 1;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.5rem;
  transition: all var(--transition);
  border: none;
}

.btn-card-primary:hover {
  background: var(--blue-mid);
}

.btn-card-outline {
  flex: 1;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.5rem;
  border: 1.5px solid var(--border-mid);
  transition: all var(--transition);
}

.btn-card-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-card-call {
  background: var(--green-bg);
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-card-call:hover {
  background: rgba(22, 163, 74, 0.18);
}

/* ===========================
     LISTING PAGE
     =========================== */
.page-header {
  background: var(--navy);
  padding: 1.5rem 0;
  margin-top: 68px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.back-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-btn:hover {
  color: var(--blue);
}

.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  align-items: start;
}

.filters-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filters-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.clear-filters {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.listing-toolbar span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toolbar-right select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.toolbar-right select option {
  background: var(--white);
}

.btn-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-filters-mobile {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* ===========================
     DETAIL PAGE
     =========================== */
.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  margin-top: 2rem;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  overflow: hidden;
  position: relative;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all var(--transition);
  filter: brightness(0.85);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--blue);
  filter: brightness(1);
}

.detail-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.detail-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
}

.detail-year-type {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chip {
  background: var(--blue-light);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  color: var(--blue);
}

.detail-price-box {
  text-align: right;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.detail-price-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.detail-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-spec {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.detail-spec-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.detail-spec-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.detail-policy {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.detail-policy h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--blue);
}

.detail-policy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.detail-policy li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}

.detail-policy li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

.detail-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-actions {
  display: flex;
  gap: 0.75rem;
}

/* ===========================
     BUTTONS (GLOBAL)
     =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  transition: all var(--transition);
  border: none;
}

.btn-accent:hover {
  background: var(--blue-mid);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(22, 163, 74, 0.25);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: rgba(22, 163, 74, 0.14);
}

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-bg);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(22, 163, 74, 0.25);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-call-outline:hover {
  background: rgba(22, 163, 74, 0.18);
}

/* ===========================
     MODALS
     =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 68, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-small {
  max-width: 460px;
}

.modal-large {
  max-width: 700px;
}

.modal-xlarge {
  max-width: 960px;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-section);
  color: var(--text-soft);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
  border: none;
}

.modal-close:hover {
  background: var(--border);
  color: var(--navy);
}

.modal-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--blue);
  margin-top: 0.25rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

/* FORMS */
form {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group select option {
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.reservation-summary {
  background: var(--blue-muted);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.reservation-summary strong {
  color: var(--blue);
}

/* SUCCESS MODAL */
.modal-success {
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 2px solid rgba(22, 163, 74, 0.3);
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.modal-success p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* CALL MODAL */
.modal-call {
  padding: 3rem 2rem;
  text-align: center;
}

.call-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-call h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal-call p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.call-btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  margin-bottom: 0.75rem;
}

.call-hours {
  color: var(--text-soft);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.call-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.call-divider::before,
.call-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===========================
     ADMIN PANEL
     =========================== */
.admin-car-list {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 60vh;
  overflow-y: auto;
}

.admin-car-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  transition: all var(--transition);
}

.admin-car-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.admin-car-info {
  flex: 1;
}

.admin-car-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.admin-car-info span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.admin-car-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.toggle-available {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-available.is-available {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.toggle-available.is-unavailable {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.btn-delete-car {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-delete-car:hover {
  background: rgba(220, 38, 38, 0.18);
}

/* ===========================
     FAQ
     =========================== */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-q:hover {
  background: var(--bg-section);
}

.faq-q.open {
  color: var(--blue);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--text-soft);
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-a.open {
  display: block;
}

/* ===========================
     FOOTER
     =========================== */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-brand .logo-text {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.whatsapp-link {
  color: #4ade80 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
     TOASTS
     =========================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastIn 0.3s ease;
  min-width: 280px;
}

.toast.success {
  border-left: 3px solid var(--green);
}

.toast.error {
  border-left: 3px solid var(--red);
}

.toast.info {
  border-left: 3px solid var(--blue);
}

.toast-out {
  animation: toastOut 0.3s ease forwards;
}

/* ===========================
     ANIMATIONS
     =========================== */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0)
  }

  to {
    opacity: 0;
    transform: translateX(30px)
  }
}

/* STARS */
.star-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.3rem;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition);
}

.star.active,
.star:hover {
  color: #f59e0b;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ===========================
     RESPONSIVE 1024px
     =========================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

/* ===========================
     RESPONSIVE 768px — MOBILE
     =========================== */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Side drawer menu */
  .nav-links {
    display: flex !important;
    /* always rendered, just off-screen */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 40px rgba(15, 20, 68, 0.18);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 1.8rem 2rem;
    gap: 0;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    padding: 0.95rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.03em;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--blue);
    background: none;
  }

  .btn-admin {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  /* Search box stacked */
  .search-box {
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius);
  }

  .search-divider {
    display: none;
  }

  .search-field {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 0;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
  }

  /* Hero stats */
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-sep {
    display: none;
  }

  .stat {
    padding: 0;
    min-width: calc(50% - 0.5rem);
  }

  /* Grids */
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Listing filters — bottom drawer */
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -8px 40px rgba(15, 20, 68, 0.14);
  }

  .filters-sidebar.open {
    transform: translateY(0);
  }

  .btn-filter-toggle {
    display: flex;
  }

  .btn-filters-mobile {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
  }

  /* Modals */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .detail-specs-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    flex-direction: column;
  }

  .confirm-actions {
    flex-direction: column;
    width: 100%;
  }

  .confirm-actions .btn-whatsapp,
  .confirm-actions .btn-primary {
    width: 100%;
  }

  .gallery-main {
    height: 260px;
    font-size: 6rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
     RESPONSIVE 480px
     =========================== */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .car-actions {
    flex-wrap: wrap;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button {
    width: 100%;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
  }

  .toast {
    min-width: unset;
  }

  .nav-links {
    width: 100%;
    border-left: none;
  }
}

/* ===========================
     COMO FUNCIONA
     =========================== */
.how-section {
  padding: 5rem 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 2px var(--blue);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--border-mid);
  padding: 0 1rem;
  flex-shrink: 0;
}

/* ===========================
     CTA STRIP
     =========================== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3faa 100%);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-white:hover {
  background: var(--blue-light);
  transform: scale(1.02);
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  border: 1.5px solid rgba(74, 222, 128, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-whatsapp-outline:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: #4ade80;
}

/* ===========================
     ADMIN HINT
     =========================== */
.admin-hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin: 0 2rem 0.5rem;
  text-align: center;
}

.admin-hint strong {
  color: var(--blue);
}

/* ===========================
     HOW + CTA RESPONSIVE
     =========================== */
@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}