/* ============================================
   PEDALEA LA GRACIOSA · STYLES
   Paleta del logo: verde oscuro, naranja, crema
   ============================================ */

:root {
  --green-dark: #1a3a2a;
  --green-deep: #0d2418;
  --green-mid: #2d5840;
  --green-light: #4a7c5e;

  --orange: #e8741c;
  --orange-bright: #f48326;
  --orange-soft: #f4a563;
  --orange-deep: #c25812;

  --cream: #f5ecd6;
  --cream-warm: #faf3e2;
  --cream-soft: #f9f2dc;

  --sand: #e8d5a6;
  --ocean: #1e5f74;

  --ink: #0d1f15;
  --ink-soft: #1a2f23;
  --muted: #6b7563;
  --line: rgba(26, 58, 42, 0.12);
  --line-soft: rgba(26, 58, 42, 0.06);

  --shadow-sm: 0 2px 8px rgba(13, 31, 21, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 31, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 31, 21, 0.18);
  --shadow-xl: 0 40px 100px rgba(13, 31, 21, 0.28);

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.intro-locked {
  overflow: hidden;
  height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--orange);
}

.eyebrow--light {
  color: var(--orange-soft);
}

.eyebrow--light::before {
  background: var(--orange-soft);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.h-display em.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  color: var(--orange);
  letter-spacing: 0;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-2deg);
}

.h-display--light {
  color: var(--cream);
}

.h-display--light em.script {
  color: var(--orange-soft);
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.175rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

.lead--light {
  color: rgba(245, 236, 214, 0.85);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-head .lead {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--xl {
  padding: 1.15rem 2.1rem;
  font-size: 1rem;
}

.btn--xl svg {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.25);
}

.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26, 58, 42, 0.35);
}

.btn--orange {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232, 116, 28, 0.35);
}

.btn--orange:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 116, 28, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--ghost:hover {
  background: var(--green-dark);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 236, 214, 0.4);
}

.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--cream);
}

.btn--wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.btn--wa:hover {
  background: #20b958;
  border-color: #20b958;
}

.btn--phone {
  display: none;
}

@media (min-width: 1024px) {
  .btn--phone {
    display: inline-flex;
  }
}

/* ============================================
   CINEMATIC INTRO
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #f4a563 0%, #e8741c 35%, #2d5840 75%, #1a3a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: introFadeOut 0.9s var(--ease) 3.6s forwards;
}

.intro__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 220, 180, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(232, 116, 28, 0.3) 0%, transparent 60%);
  animation: introSkyShift 4s ease-out;
}

.intro__sun {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #ffcc70 0%, #f48326 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: introSunRise 3.5s var(--ease) forwards;
}

.intro__horizon {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 31, 21, 0.6), transparent);
  animation: introLineDraw 2s var(--ease) 0.3s forwards;
  transform: scaleX(0);
  transform-origin: center;
}

.intro__sand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, #e8d5a6 0%, #c4a87a 100%);
  clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 100%);
  animation: introSandUp 2s var(--ease) 0.8s forwards;
  transform: translateY(100%);
}

.intro__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
}

.intro__small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0;
  animation: introTextIn 0.8s var(--ease) 1s forwards;
  margin-bottom: 2.5rem;
}

.intro__logo {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 31, 21, 0.4);
  opacity: 0;
  transform: scale(0.6);
  animation: introLogoIn 1.2s var(--ease-bounce) 1.4s forwards;
}

.intro__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__tagline {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  animation: introTextIn 0.8s var(--ease) 2.2s forwards;
  margin-bottom: 2.5rem;
}

.intro__loader {
  width: 120px;
  height: 2px;
  background: rgba(245, 236, 214, 0.25);
  border-radius: 999px;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  animation: introTextIn 0.6s var(--ease) 2.6s forwards;
}

.intro__loader-bar {
  height: 100%;
  width: 0;
  background: var(--cream);
  animation: introLoad 1.2s var(--ease) 2.6s forwards;
}

@keyframes introSkyShift {
  0% { transform: scale(1.2); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes introSunRise {
  0% { transform: translate(-50%, 200px); opacity: 0; filter: blur(20px); }
  100% { transform: translate(-50%, 0); opacity: 1; filter: blur(2px); }
}

@keyframes introLineDraw {
  to { transform: scaleX(1); }
}

@keyframes introSandUp {
  to { transform: translateY(0); }
}

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

@keyframes introLogoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes introLoad {
  to { width: 100%; }
}

@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 236, 214, 0.1);
}

.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__sep {
  opacity: 0.4;
}

@media (max-width: 640px) {
  .topbar__item--hide,
  .topbar__sep--hide {
    display: none;
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 236, 214, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(13, 36, 24, 0.95);
  border-bottom-color: rgba(245, 236, 214, 0.1);
}

.nav.is-scrolled .nav__brand-text strong,
.nav.is-scrolled .nav__brand-text em,
.nav.is-scrolled .nav__links a {
  color: var(--cream);
}

.nav.is-scrolled .btn--ghost {
  color: var(--cream);
  border-color: rgba(245, 236, 214, 0.4);
}

.nav.is-scrolled .nav__burger span {
  background: var(--cream);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

.nav__brand-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-dark);
  transition: color 0.3s var(--ease);
}

.nav__brand-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  margin-top: 2px;
  transition: color 0.3s var(--ease);
}

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

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

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}

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

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform 0.5s var(--ease);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-active {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 236, 214, 0.1);
}

.mobile-menu__cta {
  background: var(--orange);
  text-align: center;
  border-radius: 999px;
  margin-top: 16px;
  padding: 14px 24px !important;
  border-bottom: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 36, 24, 0.4) 0%, rgba(13, 36, 24, 0.2) 30%, rgba(13, 36, 24, 0.85) 100%),
    linear-gradient(90deg, rgba(13, 36, 24, 0.6) 0%, transparent 50%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
  color: var(--cream);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding: 8px 16px;
  background: rgba(245, 236, 214, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(245, 236, 214, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s var(--ease) 0.2s forwards;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 0.9s var(--ease) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.hero__title-line:nth-child(2) { animation-delay: 0.55s; }
.hero__title-line:nth-child(3) { animation-delay: 0.7s; }

.hero__script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  color: var(--orange);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  letter-spacing: 0;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(245, 236, 214, 0.9);
  max-width: 580px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s var(--ease) 0.9s forwards;
}

.hero__lead strong {
  color: var(--orange-soft);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s var(--ease) 1.1s forwards;
}

.hero__actions .btn--ghost {
  color: var(--cream);
  border-color: rgba(245, 236, 214, 0.4);
}

.hero__actions .btn--ghost:hover {
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--cream);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s var(--ease) 1.3s forwards;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-item strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  line-height: 1;
}

.hero__trust-item span {
  font-size: 0.78rem;
  color: rgba(245, 236, 214, 0.7);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero__trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(245, 236, 214, 0.2);
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(245, 236, 214, 0.4);
  border-radius: 999px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  opacity: 0;
  animation: heroIn 0.6s var(--ease) 1.6s forwards;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--cream);
  border-radius: 999px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

@media (min-width: 768px) {
  .hero__scroll {
    display: flex;
  }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--green-deep);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(245, 236, 214, 0.08);
  border-bottom: 1px solid rgba(245, 236, 214, 0.08);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeRun 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee__track i {
  color: var(--orange);
  font-style: normal;
  font-size: 1rem;
}

@keyframes marqueeRun {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.intro-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-section__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
  }
}

.intro-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat {
  background: var(--cream-warm);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.4s var(--ease);
}

.stat:hover {
  background: white;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   FLEET
   ============================================ */
.fleet {
  padding: 120px 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.fleet::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 116, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fleet__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.fleet__tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: white;
  color: var(--green-dark);
  border: 1.5px solid var(--line);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.fleet__tab:hover {
  border-color: var(--green-dark);
}

.fleet__tab.is-active {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}

.fleet__slider {
  position: relative;
}

.fleet__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}

.fleet__track::-webkit-scrollbar {
  height: 6px;
}

.fleet__track::-webkit-scrollbar-track {
  background: transparent;
}

.fleet__track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.bike {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  border: 1px solid var(--line-soft);
}

.bike:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}

.bike.is-hidden {
  display: none;
}

.bike__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.bike__tag--premium {
  background: var(--orange);
}

.bike__tag--top {
  background: var(--green-mid);
}

.bike__img {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  padding: 32px 24px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bike__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(13, 31, 21, 0.15) 0%, transparent 70%);
  filter: blur(4px);
}

.bike__img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.bike:hover .bike__img img {
  transform: scale(1.08) rotate(-2deg);
}

.bike__body {
  padding: 24px;
}

.bike__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.bike__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  line-height: 1;
}

.bike__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 3.5em;
}

.bike__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.bike__features span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 999px;
  border: 1px solid var(--line-soft);
}

.bike__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}

.bike__cta::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}

.bike__cta:hover {
  background: var(--orange);
}

.bike__cta:hover::after {
  transform: translateX(4px);
}

.fleet__nav {
  position: absolute;
  top: 35%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all 0.3s var(--ease);
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fleet__nav:hover {
  background: var(--green-dark);
  color: var(--cream);
}

.fleet__nav--prev {
  left: -8px;
}

.fleet__nav--next {
  right: -8px;
}

@media (min-width: 768px) {
  .fleet__nav {
    display: flex;
  }
}

.fleet__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.fleet__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.fleet__dot:hover {
  background: var(--orange-soft);
}

.fleet__dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

.fleet__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}

.fleet__cta p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
}

/* ============================================
   SAFARI
   ============================================ */
.safari {
  position: relative;
  padding: 120px 0;
  color: var(--cream);
  overflow: hidden;
}

.safari__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(13, 36, 24, 0.92) 0%, rgba(26, 58, 42, 0.95) 100%),
    radial-gradient(ellipse at top right, rgba(232, 116, 28, 0.25) 0%, transparent 50%);
  background-color: var(--green-deep);
}

.safari__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(245, 236, 214, 0.015) 60px, rgba(245, 236, 214, 0.015) 61px);
}

.safari__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .safari__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.safari__list {
  list-style: none;
  margin: 2.5rem 0;
  display: grid;
  gap: 1.25rem;
}

.safari__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.safari__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232, 116, 28, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(232, 116, 28, 0.3);
}

.safari__list strong {
  display: block;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.safari__list p {
  font-size: 0.92rem;
  color: rgba(245, 236, 214, 0.7);
  line-height: 1.55;
}

.safari__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.safari__visual {
  position: relative;
}

.safari__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease);
}

.safari__card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.safari__card-img {
  height: 240px;
  overflow: hidden;
}

.safari__card-img svg,
.safari__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.safari__card-body {
  padding: 24px;
  color: var(--green-dark);
}

.safari__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}

.safari__route i {
  color: var(--orange);
  font-style: normal;
}

.safari__price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.safari__price small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.safari__price strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--green-dark);
  margin: 0 6px;
  line-height: 1;
}

.safari__rating {
  text-align: right;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1.4;
}

.safari__rating small {
  color: var(--muted);
}

.safari__bubble {
  position: absolute;
  background: white;
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 240px;
  font-style: italic;
}

.safari__bubble span {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.safari__bubble--1 {
  top: -20px;
  left: -30px;
  transform: rotate(-3deg);
  display: none;
}

.safari__bubble--2 {
  bottom: -20px;
  right: -10px;
  transform: rotate(3deg);
  display: none;
}

@media (min-width: 1024px) {
  .safari__bubble--1,
  .safari__bubble--2 {
    display: block;
  }
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: 120px 0;
  background: var(--cream);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .experience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ex-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.ex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 116, 28, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

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

.ex-card:hover::before {
  opacity: 1;
}

.ex-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
}

.ex-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.ex-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
}

.ex-card--accent {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}

.ex-card--accent .ex-card__num {
  color: var(--orange-soft);
}

.ex-card--accent h3 {
  color: var(--cream);
}

.ex-card--accent p {
  color: rgba(245, 236, 214, 0.8);
}

/* ============================================
   TESTBUY
   ============================================ */
.testbuy {
  padding: 120px 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.testbuy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .testbuy__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.testbuy__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testbuy__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.95);
  transition: transform 0.6s var(--ease);
}

.testbuy__visual:hover img {
  transform: scale(1.05);
}

.testbuy__badge {
  background: var(--orange);
  color: white;
  padding: 40px 28px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  box-shadow: 0 30px 60px rgba(232, 116, 28, 0.35);
  transform: rotate(-6deg);
  position: relative;
  z-index: 1;
  animation: floatBadge 4s ease-in-out infinite;
}

.testbuy__badge span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-top: 12px;
  opacity: 0.95;
  line-height: 1.4;
}

@keyframes floatBadge {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--cream);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
  }
}

.step {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--line-soft);
  transition: all 0.4s var(--ease);
}

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

.step__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(232, 116, 28, 0.4);
}

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

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.step__arrow {
  font-size: 2rem;
  color: var(--orange);
  text-align: center;
  align-self: center;
  display: none;
}

@media (min-width: 1024px) {
  .step__arrow {
    display: block;
  }
}

.process__cta {
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
  background: var(--cream-warm);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq__item:hover {
  border-color: var(--line);
}

.faq__item[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  position: relative;
  padding-right: 56px;
  transition: color 0.3s var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.3s var(--ease);
  color: var(--green-dark);
  line-height: 1;
}

.faq__item[open] summary {
  color: var(--orange);
}

.faq__item[open] summary::after {
  content: '−';
  background: var(--orange);
  color: white;
}

.faq__item p {
  padding: 0 28px 24px;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq__item a {
  color: var(--orange);
  font-weight: 700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact__methods {
  margin-top: 2.5rem;
  display: grid;
  gap: 14px;
}

.contact__method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(245, 236, 214, 0.06);
  border: 1px solid rgba(245, 236, 214, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.contact__method:hover {
  background: rgba(245, 236, 214, 0.12);
  border-color: var(--orange);
  transform: translateX(6px);
}

.contact__method span {
  font-size: 0.85rem;
  color: rgba(245, 236, 214, 0.7);
  letter-spacing: 0.05em;
}

.contact__method strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(245, 236, 214, 0.1);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(40deg) saturate(0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer__brand p {
  font-size: 0.92rem;
  color: rgba(245, 236, 214, 0.7);
  line-height: 1.6;
  max-width: 32ch;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 0.5rem;
}

.footer__col a,
.footer__col span {
  font-size: 0.92rem;
  color: rgba(245, 236, 214, 0.75);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 236, 214, 0.1);
  padding: 24px 0;
  background: var(--green-deep);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 236, 214, 0.5);
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.4s var(--ease);
}

.fab:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

.fab svg {
  width: 32px;
  height: 32px;
}

.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: fabPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.fab__label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--green-dark);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.fab:hover .fab__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .fab {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
  .fab svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   MOTION REDUCTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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