/* ============================================================
   Camino a España — Custom CSS
   Tailwind cubre el layout; este archivo cubre animaciones,
   componentes custom y efectos visuales premium.
   ============================================================ */

/* ── Variables de diseño ── */
:root {
  --primary:       #1B4F72;
  --primary-dark:  #154060;
  --primary-light: #2E86C1;
  --accent:        #E67E22;
  --accent-dark:   #CA6F1E;
  --accent-light:  #F39C12;
  --text:          #1F2937;
  --text-soft:     #6B7280;
  --bg-alt:        #F8F9FA;
  --white:         #FFFFFF;
  --radius-xl:     1.5rem;
  --radius-2xl:    2rem;
  --shadow-soft:   0 4px 24px rgba(27,79,114,.08);
  --shadow-medium: 0 8px 40px rgba(27,79,114,.12);
  --shadow-hard:   0 20px 60px rgba(27,79,114,.18);
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ── */
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background-color: var(--primary);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   NAV
   ============================================================ */

#navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

#navbar:not(.nav-scrolled) nav a,
#navbar:not(.nav-scrolled) #menu-btn {
  color: #374151;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

/* Animated gradient background */
.hero-gradient-bg {
  background: linear-gradient(135deg, #EBF5FB 0%, #FDFEFE 40%, #FEF9F4 70%, #EBF5FB 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
}

.blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(46,134,193,0.4) 0%, rgba(27,79,114,0.15) 70%);
  top: -180px;
  right: -100px;
  animation: blobFloat1 18s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,126,34,0.3) 0%, rgba(243,156,18,0.1) 70%);
  bottom: -80px;
  left: -60px;
  animation: blobFloat2 22s ease-in-out infinite;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,79,114,0.2) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: blobFloat3 16s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.06); }
  66%       { transform: translate(30px, -20px) scale(0.96); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(30px, -40px) scale(1.08); }
  70%       { transform: translate(-20px, 20px) scale(0.94); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, 30px) scale(1.1); }
}

/* Floating particles */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
  animation: particleFloat 6s ease-in-out infinite;
}

.particle-lg {
  width: 14px;
  height: 14px;
  background: var(--primary);
  opacity: 0.12;
  animation-duration: 9s;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50%       { transform: translateY(-24px) rotate(180deg); opacity: 0.5; }
}

/* Hero entrance animations */
.hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate.delay-0 { animation-delay: 0.1s; }
.hero-animate.delay-1 { animation-delay: 0.25s; }
.hero-animate.delay-2 { animation-delay: 0.42s; }
.hero-animate.delay-3 { animation-delay: 0.58s; }
.hero-animate.delay-4 { animation-delay: 0.74s; }

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

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll mouse indicator */
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(107,114,128,0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(107,114,128,0.6);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  70%  { top: 22px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* CTA primary button shimmer */
.cta-primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.5s ease;
  border-radius: inherit;
}

.cta-primary-btn:hover::before {
  background-position: 100% 0;
}

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================================ */

/* Initial invisible state — GSAP handles all transitions via autoAlpha */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(32px);
}

[data-animate="fade-in"] {
  transform: translateY(0);
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

[data-animate="fade-left"] {
  transform: translateX(-32px);
}

[data-animate="fade-right"] {
  transform: translateX(32px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .hero-animate,
  .blob,
  .particle {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   BENEFIT CARDS
   ============================================================ */

.benefit-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(27,79,114,0.2);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.benefit-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(27,79,114,0.2);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  transition: background 0.25s ease;
}

.benefit-card:hover .benefit-bottom-line {
  background: var(--primary);
}

/* Dark variant */
.benefit-card-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process-section {
  background: #f0f7ff;
}

.process-bg {
  background:
    radial-gradient(circle at 20% 50%, rgba(27,79,114,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(230,126,34,0.05) 0%, transparent 60%);
}

.process-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid rgba(27,79,114,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.process-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(27,79,114,0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.process-number.accent {
  background: rgba(230,126,34,0.12);
  color: var(--accent);
}

.process-number.green {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.process-step-badge {
  display: inline-block;
  background: rgba(27,79,114,0.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.process-step-badge.accent {
  background: rgba(230,126,34,0.1);
  color: var(--accent);
}

.process-step-badge.green {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

/* ============================================================
   PRICE CARD
   ============================================================ */

.price-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3352 60%, var(--primary-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform 0.3s ease;
  max-width: 520px;
  margin: 0 auto;
}

.price-card:hover {
  transform: translateY(-6px);
}

/* ============================================================
   CTA FINAL SECTION
   ============================================================ */

.cta-final-section {
  background: var(--primary);
}

.cta-bg {
  background:
    radial-gradient(circle at 20% 80%, rgba(230,126,34,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46,134,193,0.15) 0%, transparent 50%);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(27,79,114,0.25);
}

.faq-item.faq-open {
  border-color: rgba(27,79,114,0.3);
  box-shadow: 0 4px 20px rgba(27,79,114,0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-body p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.faq-open .faq-body {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   STATS STRIP — extra polish
   ============================================================ */

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after {
  display: none;
}

@media (max-width: 767px) {
  .stat-item::after {
    display: none;
  }
}

/* ============================================================
   PAIN CARDS
   ============================================================ */

.pain-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

/* ============================================================
   SOLUTION BOX
   ============================================================ */

.solution-box {
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmerLine 3s linear infinite;
}

@keyframes shimmerLine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   BUTTON EFFECTS
   ============================================================ */

.btn-accent {
  position: relative;
  overflow: hidden;
}

.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(230,126,34,0.4);
  animation: btnPulse 2.5s ease-out infinite;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,126,34,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(230,126,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,126,34,0); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border-color: rgba(27,79,114,0.15);
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP WIDGET — v2
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;

  /* Hidden until JS shows it */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* FAB button */
.wa-fab {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  position: relative;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.wa-fab.open {
  transform: scale(0.92) rotate(8deg);
}

.wa-fab-icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: badgeBounce 2s ease-in-out infinite;
}

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

/* Chat popup */
.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 310px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22,1,0.36,1),
              transform 0.3s cubic-bezier(0.22,1,0.36,1);
  transform-origin: bottom right;
}

.wa-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.wa-popup-hd {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 1rem 1rem 1rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.wa-close-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.wa-close-x:hover {
  background: rgba(255,255,255,0.25);
}

.wa-avatar-hd {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-popup-meta {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

.wa-popup-meta strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.wa-popup-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
}

/* Online dot */
.wa-online-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* Body */
.wa-popup-body {
  background: #e5ddd5;
  padding: 1rem;
}

.wa-msg-wrap {
  display: flex;
}

.wa-msg {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.7rem 0.9rem;
  max-width: 92%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.wa-msg p {
  color: #111827;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0 0 3px;
}

.wa-msg p:last-of-type { margin-bottom: 0; }

.wa-time {
  display: block;
  text-align: right;
  color: #9ca3af;
  font-size: 0.65rem;
  margin-top: 4px;
}

/* CTA */
.wa-popup-cta {
  padding: 0.875rem 1rem;
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
}

.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wa-start-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

@media (max-width: 479px) {
  .wa-float { bottom: 20px; right: 16px; }
  .wa-popup { width: calc(100vw - 32px); right: -10px; }
}

/* ============================================================
   LEGAL PAGES — Shared styles
   ============================================================ */

.legal-content h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(27,79,114,0.1);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  margin: 1.75rem 0 0.5rem;
}

.legal-content p {
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: #4b5563;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-content strong {
  color: #1f2937;
  font-weight: 600;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.legal-content th {
  background: rgba(27,79,114,0.06);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.legal-content td {
  padding: 0.65rem 1rem;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  vertical-align: top;
}

.legal-content tr:nth-child(even) td {
  background: #f9fafb;
}

/* ============================================================
   CITIES SECTION
   ============================================================ */

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px 16px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  cursor: default;
  transition: var(--transition);
  text-align: center;
}

.city-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(27,79,114,0.10);
  transform: translateY(-3px);
}

.city-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,79,114,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

.city-card:hover .city-icon {
  background: var(--primary);
  color: #fff;
}

.city-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
}

.city-tag {
  font-size: 0.7rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   TESTIMONIALS — caminoamalaga style
   ============================================================ */

.cam-stat-card {
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27,79,114,0.08);
  text-align: center;
  border: 1px solid rgba(27,79,114,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cam-stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #E67E22, #F39C12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cam-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27,79,114,0.14);
  border-color: rgba(230,126,34,0.3);
}

.cam-stat-card:hover::after {
  transform: scaleX(1);
}

.cam-stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.cam-stat-label {
  font-size: 0.78rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cam-stat-stars {
  color: #E67E22;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.cam-name-badge {
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  border-left: 4px solid #E67E22;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: float-badge 3s ease-in-out infinite;
}

.cam-name-badge:hover {
  transform: translateY(-6px) !important;
  animation-play-state: paused;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border-left-color: #1B4F72;
}

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

.cam-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(27,79,114,0.07);
  border: 1px solid rgba(27,79,114,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cam-review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B4F72, #E67E22);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.cam-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27,79,114,0.13);
  border-color: rgba(230,126,34,0.25);
}

.cam-review-card:hover::before {
  transform: scaleX(1);
}

.cam-review-stars {
  color: #E67E22;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cam-review-text {
  color: #1a2a3a;
  font-size: 0.875rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.cam-review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f8;
  margin-top: auto;
}

.cam-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cam-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2a3a;
  line-height: 1.2;
}

.cam-origin {
  font-size: 0.72rem;
  color: #888;
  margin-top: 1px;
}

/* ============================================================
   PRICE SECTION — Free call card
   ============================================================ */

.free-call-card {
  background: #ffffff;
  border: 2px solid rgba(27,79,114,0.12);
  border-radius: 2rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(27,79,114,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.free-call-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,79,114,0.12);
  border-color: rgba(27,79,114,0.3);
}
