:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --text: #1a1a1a;
  --muted: #666;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --card-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  background: #ececec;
  display: block;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(7px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-toggle {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.main-nav {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #ececec;
  display: none;
}

.main-nav.open {
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 4%;
}

.main-nav li + li {
  margin-top: 10px;
}

.main-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: var(--bg-soft);
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1ca651;
}

.btn-outline {
  border: 1px solid #ddd;
  background: #fff;
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
}

.btn svg,
.icon {
  width: 18px;
  height: 18px;
}

main section {
  padding: 36px 0;
}

.hero {
  background: linear-gradient(140deg, #fff 0%, #fff 60%, #fff4f4 100%);
  padding-top: 28px;
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  line-height: 1.2;
}

.route-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.route-flags img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.brand-clean {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.brand-clean .mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 18px rgba(211, 47, 47, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.pill img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
}

.lead {
  color: #333;
  margin: 0 0 18px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.card h2,
.card h3 {
  margin-top: 0;
}

.summary-box {
  border-left: 4px solid var(--primary);
  background: #fff8f8;
  padding: 14px 16px;
  border-radius: 10px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.list-check li {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.list-check svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.cta-strip {
  background: #fff4f4;
  border: 1px solid #f3d1d1;
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  border: 1px solid #e8e8e8;
  padding: 10px;
  text-align: left;
}

th {
  background: #fff4f4;
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
}

.breadcrumb a {
  color: var(--primary);
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 14px;
}

.faq-answer[hidden] {
  display: none;
}

.site-footer {
  background: #101010;
  color: #fff;
  padding: 38px 0 18px;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer a {
  color: #ffd8d8;
}

.floating-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(18px + env(safe-area-inset-bottom));
  top: auto;
  z-index: 1000;
  pointer-events: none;
}

.floating-btn {
  position: absolute;
  bottom: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  color: #fff;
  pointer-events: auto;
  animation: pulse 2.2s infinite;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-call {
  left: 14px;
  background: var(--primary);
}

.floating-wa {
  right: 14px;
  background: var(--whatsapp);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.field {
  margin-top: 10px;
}

:focus-visible {
  outline: 3px solid #111;
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .header-cta .btn span {
    display: none;
  }

  .header-cta .btn {
    width: 42px;
    height: 42px;
    padding: 0;
  }
}

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

  .main-nav {
    position: static;
    display: block;
    border: none;
  }

  .main-nav ul {
    display: flex;
    gap: 4px;
    padding: 0;
  }

  .main-nav li + li {
    margin-top: 0;
  }

  .hero-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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