/* =====================================================
   TAXI PET - LANDING PAGE v2
   Premium Pet-Tech Design (matches reference image)
   ===================================================== */

:root {
  --primary: #16A34A;
  --primary-light: #DCFCE7;
  --primary-dark: #15803D;
  --secondary: #0EA5E9;
  --accent: #F59E0B;
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-taxi {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary-taxi {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}
.btn-primary-taxi:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}

.btn-secondary-taxi {
  background: white;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-secondary-taxi:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #128C7E; }

/* =====================================================
   HEADER
   ===================================================== */
.header-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  height: 72px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.header-nav a:hover {
  color: var(--primary);
}

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

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

.header-nav a.active {
  color: var(--text-primary);
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.header-actions .btn-taxi {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero-v2 {
  padding-top: 100px;
  padding-bottom: 1rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 450px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title .accent {
  color: var(--text-primary);
}

.hero-title i {
  font-size: 0.7em;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-buttons .btn-taxi {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.hero-trust-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  animation: float 3s ease-in-out infinite;
  min-width: 140px;
}

.floating-card div:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card i {
  color: var(--primary);
  font-size: 1rem;
}

.floating-card .stars {
  color: var(--primary);
  font-size: 0.65rem;
  display: flex;
  gap: 0.1rem;
}

.floating-card.card-1 {
  top: 5%;
  right: -15px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 5%;
  left: -15px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  max-width: 1280px;
  margin: 0 auto 2rem;
  padding: 1.25rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
  flex-wrap: nowrap;
}

.stat-item {
  text-align: center;
  padding: 0.25rem;
  flex-shrink: 0;
}

.stat-item--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  flex-shrink: 0;
}

.stat-item--icon i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stat-item--icon h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.2;
}

.stat-item--icon p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.2;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* =====================================================
   TRUST BADGES SECTION
   ===================================================== */
.trust-section {
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

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

.trust-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   SECTIONS GENERAL
   ===================================================== */
.section-v2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  position: relative;
}

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem;
}

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-card-body .btn-taxi {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.steps-container {
  display: flex;
  gap: 1rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item-v2 {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 0.75rem;
  position: relative;
}

.step-circle i {
  font-size: 1rem;
}

.step-title-v2 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-desc-v2 {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.how-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.how-img-overlay {
  position: relative;
}

.how-img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.testimonial-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  position: relative;
  margin-top: 40px;
}

.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-text-v2 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-pet {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =====================================================
   COVERAGE
   ===================================================== */
.coverage-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.coverage-map {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.coverage-map-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coverage-map-header i {
  color: var(--primary);
}

.coverage-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.coverage-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.district-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.district-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.district-tag i {
  color: var(--primary);
  font-size: 0.7rem;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  background: white !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: white !important;
  color: var(--primary) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
}

/* =====================================================
   SOBRE NOSOTROS
   ===================================================== */
.about-v2 {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-imgwrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.about-badge i {
  color: #EF4444;
  font-size: 1rem;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.about-value strong {
  color: var(--text-primary);
  font-weight: 700;
}

.about-value span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.about-founder {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-title {
    font-size: 1.6rem;
  }
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta-v2 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 3rem auto;
  max-width: 1280px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-v2-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.cta-v2-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-v2-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-v2-buttons {
  display: flex;
  gap: 1rem;
}

.cta-v2-buttons .btn-taxi {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cta-v2-buttons .btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cta-v2-buttons .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-v2-buttons .btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.cta-v2-buttons .btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* =====================================================
   ROUNDTRIP (IDA Y VUELTA)
   ===================================================== */
.roundtrip-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.roundtrip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.roundtrip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.roundtrip-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}

.roundtrip-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.roundtrip-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.roundtrip-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundtrip-wait {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.roundtrip-wait i {
  font-size: 1rem;
}

.roundtrip-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.roundtrip-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.roundtrip-feature i {
  color: var(--primary);
  font-size: 1rem;
}

.roundtrip-cta {
  text-align: center;
}

.roundtrip-cta .btn-taxi {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.roundtrip-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================================================
   SISTEMA DE RESERVAS (STEPS)
   ===================================================== */
.reserva-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.reserva-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reserva-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reserva-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reserva-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.reserva-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.reserva-step-imgwrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

.reserva-step-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.reserva-step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .reserva-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reserva-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .reserva-step {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .reserva-steps {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CONDUCTORES
   ===================================================== */
.drivers-v2 {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.drivers-imgwrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.drivers-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.drivers-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.drivers-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.drivers-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.drivers-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  background: white;
  transition: var(--transition);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .drivers-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .drivers-title {
    font-size: 1.6rem;
  }
}

/* Zone checkboxes */
.zone-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
}

.zone-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.zone-check:hover {
  background: var(--primary-light);
}

.zone-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.zone-check span {
  user-select: none;
}

@media (max-width: 480px) {
  .zone-checkboxes {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-v2 {
  background: #0F172A;
  color: white;
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-v2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('/static/images/footer-mascotas.png') no-repeat bottom right;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
}

.footer-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1rem;
}

.footer-mascotas-img {
  position: absolute;
  bottom: 0;
  right: 2rem;
  width: 200px;
  opacity: 0.9;
  pointer-events: none;
}

.footer-mascotas-img img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748B;
  position: relative;
  z-index: 2;
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 998;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-sticky-cta .btn-taxi {
  flex: 1;
  justify-content: center;
  padding: 0.875rem;
}

/* =====================================================
   PUBLICACIONES / BLOG
   ===================================================== */
.publicaciones-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  margin: 0 auto 3rem;
  max-width: 1280px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-main-img { max-width: 400px; }
  .floating-card { display: none; }
  .stats-bar { flex-wrap: wrap; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { grid-template-columns: 1fr; }
  .steps-container { flex-wrap: wrap; }
  .steps-container::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-v2 { grid-template-columns: 1fr; }
  .cta-v2-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-v2-img { max-width: 400px; margin: 0 auto; }
  .cta-v2-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .roundtrip-v2 { grid-template-columns: 1fr; }
  .roundtrip-connector { order: 1; }
  .roundtrip-card { order: 0; }
  .roundtrip-card:last-child { order: 2; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 767px) {
  .header-inner { padding: 0 1rem; }
  .hero-title { font-size: 1.85rem; word-wrap: break-word; hyphens: auto; }
  .hero-text { font-size: 1rem; max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn-taxi { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 0.5rem; align-items: center; }
  .hero-trust-item { white-space: normal; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { display: grid; grid-template-columns: repeat(2, 1fr); margin: 1rem; gap: 1rem; padding: 1.25rem; }
  .stat-item--icon { flex-direction: column; text-align: center; }
  .stat-item--icon i { margin: 0 auto; }
  .stat-number { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-v2-content h2 { font-size: 1.8rem; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .section-v2 { padding: 3rem 1rem; }
  .hero-v2 { padding-top: 100px; }
  .about-v2 { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .roundtrip-v2 { grid-template-columns: 1fr; }
  .roundtrip-features { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}

@media (max-width: 576px) {
  .header-logo { font-size: 1.1rem; }
  .header-logo img { height: 32px; }
  .header-actions { display: none; }
  .hero-title { font-size: 1.6rem; word-wrap: break-word; hyphens: auto; }
  .hero-main-img { border-radius: var(--radius-md); max-width: 280px; }
  .stats-bar { padding: 1rem; gap: 0.5rem; }
  .stat-item { padding: 0.25rem; }
  .service-card-v2 { margin: 0; }
  .step-item-v2 { max-width: 100%; min-width: 80px; }
  .step-circle { width: 40px; height: 40px; }
  .step-title-v2 { font-size: 0.8rem; }
  .step-desc-v2 { font-size: 0.7rem; }
  .cta-v2 { padding: 2rem 1rem; margin: 1.5rem auto; border-radius: var(--radius-lg); }
  .cta-v2-buttons { flex-direction: column; gap: 0.75rem; }
  .cta-v2-buttons .btn-taxi { width: 100%; justify-content: center; padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-brand { justify-content: center; }
  .footer-desc { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .coverage-map iframe { height: 200px; }
  .how-it-works { gap: 1.5rem; }
  .how-img-caption { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .roundtrip-card { padding: 1.25rem; }
  .roundtrip-wait { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .reserva-step { padding: 0.875rem; }
  .reserva-step-title { font-size: 0.8rem; }
  .testimonial-card-v2 { padding: 3rem 1rem 1rem; margin-top: 35px; }
  .testimonial-avatar-lg { width: 70px; height: 70px; top: -35px; }
  .whatsapp-float { bottom: 5rem; right: 1rem; width: 50px; height: 50px; font-size: 1.5rem; }
  .mobile-sticky-cta { padding: 0.5rem 0.75rem; }
  .mobile-sticky-cta .btn-taxi { padding: 0.7rem; font-size: 0.9rem; }
}
