/* ============================================
   EASYRUMBO - CSS PROFESIONAL 2026
   ============================================ */

:root {
  --color-bg: #fafbfc;
  --color-surface: #ffffff;
  --color-text: #1a1f36;
  --color-text-secondary: #5e6278;
  --color-text-muted: #8892a4;
  --color-border: #e8ecf1;
  --color-border-light: #f0f3f8;
  --color-primary: #0d9488;
  --color-primary-light: #14b8a6;
  --color-primary-dark: #0f766e;
  --color-primary-bg: #f0fdfa;
  --color-accent: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  --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 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(13,148,136,0.15);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--color-text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--color-text-secondary); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 56px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-base);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.4rem; color: var(--color-primary);
}
.brand-icon {
  width: 40px; height: 40px;
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-glow);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-full);
  color: var(--color-text-secondary); font-weight: 600; font-size: 0.9rem;
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { background: var(--color-primary-bg); color: var(--color-primary); }

/* LANGUAGE SWITCHER */
.lang-switcher { margin-left: 12px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--color-primary-bg);
  border: 2px solid var(--color-primary); border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700; color: var(--color-primary);
  transition: var(--transition-fast); cursor: pointer;
}
.lang-btn:hover { background: var(--color-primary); color: white; transform: scale(1.05); }

/* GUIDE HERO WITH OVERLAY */
.guide-hero-wrapper {
  position: relative; width: 100%; height: 450px;
  overflow: hidden; margin-bottom: 0;
}
.guide-hero {
  width: 100%; height: 100%; object-fit: cover;
  display: block; margin: 0;
}
.guide-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 48px clamp(16px, 6vw, 56px);
}
.guide-hero-overlay h1 {
  color: white; font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 800px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 0; line-height: 1.1;
}
@media (max-width: 768px) {
  .guide-hero-wrapper { height: 300px; }
  .guide-hero-overlay { padding: 24px 16px; }
  .guide-hero-overlay h1 { font-size: 1.5rem; }
}

/* RELATED CARDS WITH IMAGES */
.related-card {
  display: block; background: var(--color-surface);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: var(--transition-base); text-decoration: none;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.related-img {
  height: 160px; background-size: cover; background-position: center;
  background-color: var(--color-primary-bg);
}
.related-card h3 { padding: 16px 16px 4px; font-size: 1.1rem; margin: 0; }
.related-card p { padding: 0 16px 16px; font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

/* CHECKLIST ITEMS */
.checklist-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; font-size: 0.95rem;
}
.checklist-item input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--color-primary);
}

/* EMOJI STYLING */
.emoji-check { font-size: 1.1em; }
.emoji-cross { font-size: 1em; }

/* HERO */
.hero {
  position: relative; padding: 96px clamp(16px, 6vw, 56px);
  background: var(--gradient-hero); overflow: hidden;
  min-height: 70vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 120px; background: linear-gradient(to top, var(--color-bg), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(255,255,255,0.2);
  border-radius: var(--radius-full); color: white;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero h1 { color: white; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* BOTONES */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition-base); border: none; outline: none;
}
.btn-primary { background: white; color: var(--color-primary); box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* SEARCH */
.search-section { position: relative; z-index: 10; margin-top: -60px; padding: 0 clamp(16px, 6vw, 56px); }
.search-box {
  background: var(--color-surface); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-xl); max-width: 800px; margin: 0 auto;
}
.search-form { display: flex; gap: 8px; }
.search-input-wrapper { flex: 1; position: relative; }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); }
.search-input {
  width: 100%; padding: 16px 16px 16px 48px;
  border: 2px solid var(--color-border); border-radius: var(--radius-full);
  font-size: 1rem; font-family: var(--font-sans); transition: var(--transition-fast);
}
.search-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--color-primary-bg); }
.search-btn {
  padding: 16px 32px; background: var(--gradient-hero); color: white;
  border: none; border-radius: var(--radius-full); font-weight: 700;
  cursor: pointer; transition: var(--transition-base);
}
.search-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.search-results { max-width: 800px; margin: 16px auto 0; }
.search-state, .search-summary, .result-card {
  padding: 16px; border-radius: var(--radius-md); background: var(--color-primary-bg);
}
.search-state-error { color: #b91c1c; background: #fef2f2; }
.search-summary { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; color: var(--color-text-secondary); }
.result-list { display: grid; gap: 12px; }
.result-card { display: flex; justify-content: space-between; gap: 16px; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); }
.result-card h3 { font-size: 1.05rem; margin: 4px 0; }
.result-card p { margin: 0; }
.result-type { color: var(--color-primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.result-link { color: white; background: var(--color-primary); padding: 8px 14px; border-radius: var(--radius-full); font-weight: 700; }

/* FEATURES */
.features-section { padding: 96px clamp(16px, 6vw, 56px); background: linear-gradient(180deg, #fafbfc 0%, #f0fdfa 100%); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-badge {
  display: inline-block; padding: 4px 16px;
  background: var(--color-primary-bg); color: var(--color-primary);
  border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.feature-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition-base);
  border: 1px solid var(--color-border-light); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-hero); transform: scaleX(0); transition: var(--transition-base);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; background: var(--color-primary-bg);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--color-primary);
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.feature-card p { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }

/* DESTINATIONS */
.destinations-section { padding: 96px clamp(16px, 6vw, 56px); }
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; max-width: 1400px; margin: 0 auto; }
.destination-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--color-surface); box-shadow: var(--shadow-md);
  transition: var(--transition-base); display: flex; flex-direction: column;
  border: 1px solid var(--color-border-light);
}
.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.card-image { position: relative; height: 220px; overflow: hidden; }
.card-image-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: var(--transition-slow); }
.destination-card:hover .card-image-bg { transform: scale(1.08); }
.card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.card-icon {
  position: absolute; bottom: 24px; left: 24px;
  width: 60px; height: 60px; background: white;
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.card-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px; background: rgba(255,255,255,0.95);
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
  color: var(--color-primary); backdrop-filter: blur(10px);
}
.card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.4rem; margin-bottom: 8px; }
.card-content p { color: var(--color-text-muted); font-size: 0.95rem; flex: 1; margin-bottom: 16px; }
.card-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--color-text-muted); }
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-meta svg { width: 16px; height: 16px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-weight: 700; margin-top: 16px; }

/* BREADCRUMBS */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  padding: 16px clamp(16px, 4vw, 32px);
  max-width: 1200px; margin: 0 auto;
  font-size: 0.85rem; color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-primary); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--color-text-muted); }
.breadcrumbs .separator { margin: 0 4px; }

/* READING TIME */
.reading-time {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--color-primary-bg);
  border-radius: var(--radius-full); font-size: 0.8rem;
  color: var(--color-primary); font-weight: 600;
}

/* RELATED ARTICLES */
.related-section {
  padding: 64px clamp(16px, 6vw, 56px);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}
.related-section h2 { text-align: center; margin-bottom: 32px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.related-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--color-border-light);
  transition: var(--transition-base); text-decoration: none;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.related-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--color-text); }
.related-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* CATEGORY PILLS */
.category-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.category-pill {
  padding: 8px 20px; background: var(--color-surface);
  border: 2px solid var(--color-border); border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600; color: var(--color-text-secondary);
  cursor: pointer; transition: var(--transition-fast); text-decoration: none;
}
.category-pill:hover, .category-pill.active {
  background: var(--color-primary); color: white; border-color: var(--color-primary);
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl); padding: 48px;
  text-align: center; color: white; margin: 48px 0;
}
.cta-box h2 { color: white; margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.cta-box .btn { background: white; color: var(--color-primary); }

/* AUTHOR BOX */
.author-box {
  display: flex; gap: 24px; padding: 32px;
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light); margin: 48px 0;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-hero); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2rem; font-weight: 800; flex-shrink: 0;
}
.author-info h4 { margin-bottom: 4px; }
.author-info p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* NEWSLETTER INLINE */
.newsletter-inline {
  background: var(--color-primary-bg); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; margin: 48px 0;
  border: 2px solid var(--color-primary);
}
.newsletter-inline h3 { margin-bottom: 8px; }
.newsletter-inline p { margin-bottom: 16px; }

/* NEWSLETTER */
.newsletter-section {
  padding: 64px clamp(16px, 6vw, 56px);
  background: var(--gradient-hero); text-align: center;
}
.newsletter-box { max-width: 600px; margin: 0 auto; color: white; }
.newsletter-box h2 { color: white; margin-bottom: 16px; }
.newsletter-box p { color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 8px; max-width: 500px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); color: white;
  font-size: 1rem; font-family: var(--font-sans); backdrop-filter: blur(10px);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.2); }
.newsletter-btn {
  padding: 16px 32px; background: white; color: var(--color-primary);
  border: none; border-radius: var(--radius-full); font-weight: 700;
  cursor: pointer; transition: var(--transition-base);
}
.newsletter-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.newsletter-email { display: inline-flex; justify-content: center; }

/* FOOTER */
.site-footer {
  background: var(--color-text); color: white;
  padding: 96px clamp(16px, 6vw, 56px) 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto 64px; }
.footer-brand h3 { color: white; font-size: 1.5rem; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 300px; }
.footer-col h4 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); padding: 8px 0; transition: var(--transition-fast); }
.footer-col a:hover { color: white; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* CONTENT */
.editorial-content { max-width: 780px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
.editorial-content h2 { margin-top: 64px; margin-bottom: 24px; padding-top: 32px; border-top: 1px solid var(--color-border-light); }
.editorial-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.editorial-content h3 { margin-top: 32px; margin-bottom: 16px; }
.editorial-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 24px; }
.editorial-content ul, .editorial-content ol { margin-bottom: 24px; padding-left: 32px; }
.editorial-content li { margin-bottom: 8px; line-height: 1.7; }
.editorial-content blockquote {
  margin: 32px 0; padding: 24px 32px;
  background: var(--color-primary-bg); border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic; color: var(--color-text-secondary);
}
.editorial-content table { width: 100%; margin: 32px 0; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.editorial-content th { background: var(--color-primary); color: white; padding: 16px; text-align: left; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; }
.editorial-content td { padding: 16px; border-bottom: 1px solid var(--color-border-light); }
.editorial-content tr:last-child td { border-bottom: none; }
.editorial-content tr:nth-child(even) td { background: var(--color-bg); }

/* SIDEBAR */
.editorial-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; border: 1px solid var(--color-border-light); box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 16px; }
.side-link { display: flex; align-items: center; gap: 8px; padding: 12px; border-radius: var(--radius-md); color: var(--color-text-secondary); font-weight: 600; transition: var(--transition-fast); }
.side-link:hover, .side-link.active { background: var(--color-primary-bg); color: var(--color-primary); }

/* AD SLOT */
.ad-slot {
  display: flex; align-items: center; justify-content: center;
  min-height: 250px; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed var(--color-border); border-radius: var(--radius-lg);
  color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600;
}

/* GUIDE PAGE LAYOUT */
.guide-page .content {
  max-width: 800px; margin: 0 auto;
  padding: clamp(20px, 4vw, 42px);
}
.guide-page .content h2 {
  margin-top: 34px; font-size: 1.65rem;
}
.guide-page .content h2:first-child { margin-top: 0; }
.guide-page .content p, .guide-page .content li {
  color: var(--color-text-secondary);
}
.guide-page .content table {
  width: 100%; margin: 24px 0; border-collapse: collapse;
}
.guide-page .content th, .guide-page .content td {
  padding: 13px; border: 1px solid var(--color-border-light);
  text-align: left; vertical-align: top;
}
.guide-page .content th { background: var(--color-primary-bg); }

/* HERO IMAGE FOR GUIDES */
.guide-hero {
  width: 100%; height: 400px;
  object-fit: cover; border-radius: var(--radius-lg);
  margin-bottom: 32px; box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .guide-hero { height: 250px; }
}

/* INLINE IMAGES */
.content img {
  width: 100%; border-radius: var(--radius-md);
  margin: 24px 0; box-shadow: var(--shadow-md);
}
.content figure {
  margin: 24px 0; text-align: center;
}
.content figcaption {
  font-size: 0.85rem; color: var(--color-text-muted);
  margin-top: 8px; font-style: italic;
}

/* CALLOUT BOXES */
.callout {
  padding: 20px 24px; border-radius: var(--radius-md);
  margin: 24px 0; border-left: 4px solid;
}
.callout-tip {
  background: #f0fdf4; border-color: #22c55e;
}
.callout-warning {
  background: #fef3c7; border-color: #f59e0b;
}
.callout-danger {
  background: #fef2f2; border-color: #ef4444;
}
.callout-info {
  background: #eff6ff; border-color: #3b82f6;
}
.callout strong {
  display: block; margin-bottom: 4px; font-size: 0.95rem;
}
.callout p { margin: 0; font-size: 0.9rem; }

/* PROS AND CONS */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 24px 0;
}
.pros, .cons {
  padding: 20px; border-radius: var(--radius-md);
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fef2f2; border: 1px solid #fecaca; }
.pros h4 { color: #16a34a; margin: 0 0 12px; }
.cons h4 { color: #dc2626; margin: 0 0 12px; }
.pros ul, .cons ul { margin: 0; padding-left: 20px; }
.pros li, .cons li { margin-bottom: 6px; font-size: 0.9rem; }

/* STEP-BY-STEP */
.steps {
  counter-reset: step; margin: 24px 0;
}
.step {
  display: flex; gap: 16px; margin-bottom: 20px;
  padding: 16px; background: var(--color-surface);
  border-radius: var(--radius-md); border: 1px solid var(--color-border-light);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  background: var(--color-primary); color: white;
  border-radius: 50%; font-weight: 700; font-size: 0.9rem;
}
.step-content h4 { margin: 0 0 4px; font-size: 1rem; }
.step-content p { margin: 0; font-size: 0.9rem; color: var(--color-text-secondary); }

/* COMPARISON CARDS */
.comparison-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin: 24px 0;
}
.comparison-card {
  padding: 24px; background: var(--color-surface);
  border-radius: var(--radius-md); border: 2px solid var(--color-border-light);
  text-align: center; transition: var(--transition-base);
}
.comparison-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.comparison-card .price {
  font-size: 2rem; font-weight: 800; color: var(--color-primary);
  margin: 12px 0 8px;
}
.comparison-card .period {
  font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 16px;
}
.comparison-card ul { text-align: left; list-style: none; padding: 0; }
.comparison-card li { padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--color-border-light); }
.comparison-card li:last-child { border: none; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, #ecfdf5 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg); padding: 32px;
  margin: 32px 0; text-align: center;
}
.highlight-box h3 { color: var(--color-primary-dark); margin-bottom: 12px; }
.highlight-box .big-number {
  font-size: 3rem; font-weight: 800; color: var(--color-primary);
  line-height: 1;
}

/* RATING STARS */
.rating {
  display: inline-flex; gap: 2px; color: #f59e0b;
  font-size: 1.1rem;
}

/* APP CARD */
.app-card {
  display: flex; gap: 16px; padding: 20px;
  background: var(--color-surface); border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light); margin: 12px 0;
  transition: var(--transition-base);
}
.app-card:hover { box-shadow: var(--shadow-md); }
.app-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.app-info h4 { margin: 0 0 4px; font-size: 1rem; }
.app-info p { margin: 0; font-size: 0.85rem; color: var(--color-text-secondary); }
.app-info .app-badge {
  display: inline-block; padding: 2px 8px;
  background: var(--color-primary-bg); color: var(--color-primary);
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
  margin-top: 6px;
}

/* PHOTO GRID */
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin: 24px 0; border-radius: var(--radius-md);
  overflow: hidden;
}
.photo-grid img {
  width: 100%; height: 200px; object-fit: cover;
  margin: 0; transition: transform 0.3s;
}
.photo-grid img:hover { transform: scale(1.05); }

/* PRICE TAG */
.price-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--color-primary);
  color: white; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem;
}

/* STAT CARDS */
.stat-row {
  display: flex; gap: 16px; margin: 24px 0; flex-wrap: wrap;
}
.stat-card {
  flex: 1; min-width: 120px; padding: 20px;
  background: var(--color-surface); border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light); text-align: center;
}
.stat-card .stat-value {
  font-size: 1.8rem; font-weight: 800; color: var(--color-primary);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px;
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .editorial-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .site-header { flex-direction: column; gap: 16px; }
  .nav { width: 100%; justify-content: center; flex-wrap: wrap; }
  .nav-link { padding: 6px 10px; font-size: 0.82rem; }
  .lang-switcher { margin-left: 0; }
  .hero { min-height: auto; padding: 64px 16px; }
  .hero-buttons { flex-direction: column; }
  .search-form { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .features-grid, .destinations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
}
