/* ================================================
   TRAVEL STORIES THEME - MAIN STYLES
   ================================================ */

:root {
  --color-primary: #292525;
  --color-primary-light: #3a3535;
  --color-secondary: #0066cc;
  --color-secondary-hover: #0052a3;
  --color-border: #e5e7eb;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafb;
  --color-text: #292525;
  --color-text-light: #6b7280;
  --color-text-lighter: #9ca3af;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Lora', serif;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
}

/* ================================================
   RESET & DEFAULTS
   ================================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--color-secondary-hover);
}

/* ================================================
   TIPOGRAFÍA
   ================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

blockquote {
  border-left: 4px solid var(--color-secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-light);
  font-size: 1.1em;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.site-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.site-logo a:hover {
  opacity: 0.7;
  color: var(--color-text);
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 0.25rem;
}

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

.site-nav a:hover:after {
  width: 100%;
}

.site-nav a.current:after {
  width: 100%;
}

/* Mobile menu */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .site-nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
  }
}

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

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

.hero {
  background: linear-gradient(135deg, rgba(41, 37, 37, 0.8), rgba(41, 37, 37, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="rgba(41,37,37,0.95)"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 1rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-ctas .btn-primary {
  background-color: var(--color-secondary);
  color: white;
}

.hero-ctas .btn-primary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.hero-ctas .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-ctas .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 1rem;
    min-height: 350px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* ================================================
   CONTAINER & LAYOUT
   ================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 1rem;
}

.section.section-light {
  background-color: var(--color-bg-light);
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }
}

/* ================================================
   STORY GRID / CARDS
   ================================================ */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.story-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.story-card-image {
  overflow: hidden;
  height: 250px;
  background-color: var(--color-bg-light);
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.story-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.story-card-title a {
  color: var(--color-text);
}

.story-card-meta {
  font-size: 0.875rem;
  color: var(--color-text-lighter);
  margin-bottom: 1rem;
}

.story-card-excerpt {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: auto;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-link {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.story-card-link:hover {
  color: var(--color-secondary-hover);
  margin-right: -0.25rem;
}

.story-card-link:after {
  content: ' →';
}

/* ================================================
   FEATURED STORY
   ================================================ */

.featured-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  background-color: var(--color-bg-light);
  padding: 3rem;
  border-radius: 8px;
}

.featured-story-image {
  overflow: hidden;
  border-radius: 4px;
  height: 400px;
}

.featured-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story-content h2 {
  margin-top: 0;
}

.featured-story-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.featured-story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.featured-story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .featured-story {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .featured-story-image {
    height: 300px;
  }
}

/* ================================================
   FILTROS
   ================================================ */

.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
}

.filter-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background-color: white;
  color: var(--color-text);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-button:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.filter-button.active {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.filter-search {
  flex: 1;
  min-width: 200px;
}

.filter-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.filter-search input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

@media (max-width: 640px) {
  .filters {
    flex-direction: column;
  }

  .filter-search {
    min-width: 100%;
  }

  .filter-search input {
    width: 100%;
  }

  .filters {
    gap: 0.5rem;
  }
}

/* ================================================
   STORY PAGE
   ================================================ */

.story-cover {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .story-cover {
    height: 300px;
  }
}

.story-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}

.story-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.story-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.story-meta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.story-meta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-meta-author {
  font-weight: 600;
  color: var(--color-text);
}

.story-content {
  margin: 2rem 0;
  line-height: 1.8;
}

.story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 2rem 0;
}

.story-content a {
  text-decoration: underline;
  color: var(--color-secondary);
}

.story-content a:hover {
  color: var(--color-secondary-hover);
}

/* ================================================
   ENGAGEMENT
   ================================================ */

.story-engagement {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 3rem 0;
  flex-wrap: wrap;
}

.engagement-likes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.like-button {
  background: none;
  border: 2px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.2s ease;
}

.like-button:hover {
  border-color: var(--color-secondary);
  background-color: rgba(0, 102, 204, 0.05);
}

.like-button.liked {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.like-count {
  font-weight: 600;
  color: var(--color-text);
}

.engagement-share {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--color-text);
}

.share-button:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

@media (max-width: 640px) {
  .story-engagement {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .engagement-share {
    width: 100%;
  }

  .share-button {
    flex: 1;
    justify-content: center;
  }
}

/* ================================================
   COMENTARIOS - RESPONSIVE & HERMOSO
   ================================================ */

.comments-section {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.comments-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.comment-form-wrapper {
  margin-bottom: 3rem;
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-form p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.comment-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.comment-form input,
.comment-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: white;
  transition: all 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-form input[type="submit"] {
  align-self: flex-start;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-body {
  display: flex;
  gap: 1rem;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content-wrapper {
  flex-grow: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.comment-author {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.comment-date {
  color: var(--color-text-lighter);
  font-size: 0.85rem;
}

.comment-content {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.comment-reply-link {
  margin-top: 0.75rem;
}

.comment-reply-link a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color 0.2s ease;
}

.comment-reply-link a:hover {
  color: var(--color-secondary-hover);
}

/* Comentarios anidados */
.children {
  list-style: none;
  margin-left: 2rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border);
}

@media (max-width: 640px) {
  .children {
    margin-left: 1rem;
  }

  .comment-body {
    gap: 0.75rem;
  }

  .comment-avatar img {
    width: 40px;
    height: 40px;
  }

  .comment-author {
    font-size: 0.9rem;
  }

  .comment-content {
    font-size: 0.9rem;
  }
}

.comment-form-wrapper {
  margin-bottom: 2rem;
}

#respond {
  margin-top: 2rem;
}

#reply-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

#cancel-comment-reply-link {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

/* ================================================
   AUTHOR BIO
   ================================================ */

.author-bio {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio-content h4 {
  margin: 0 0 0.5rem 0;
}

.author-bio-content p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.author-bio-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-bio-links a {
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .author-bio-links {
    justify-content: center;
  }
}

/* ================================================
   RELATED STORIES
   ================================================ */

.related-stories {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.related-stories h3 {
  margin-bottom: 2rem;
}

.related-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .related-stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

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

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    gap: 1rem;
  }
}

/* ================================================
   LOADING & ANIMATIONS
   ================================================ */

.loading {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================================
   BUTTONS (GENERAL)
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: rgba(0, 102, 204, 0.05);
}

.btn-text {
  background: none;
  color: var(--color-secondary);
  padding: 0.5rem;
}

.btn-text:hover {
  color: var(--color-secondary-hover);
}

/* ================================================
   404 PAGE
   ================================================ */

.error-404 {
  text-align: center;
  padding: 4rem 1rem;
}

.error-404 h1 {
  font-size: 5rem;
  color: var(--color-secondary);
  margin: 0 0 1rem;
}

.error-404 p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .error-404 h1 {
    font-size: 3rem;
  }
}

/* ================================================
   UTILITIES
   ================================================ */

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

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-text-light);
}

.text-small {
  font-size: 0.875rem;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-md) !important; }
.mb-2 { margin-bottom: var(--spacing-lg) !important; }
.mb-3 { margin-bottom: var(--spacing-2xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-md) !important; }
.mt-2 { margin-top: var(--spacing-lg) !important; }
.mt-3 { margin-top: var(--spacing-2xl) !important; }

/* ================================================
   FIN DE ESTILOS
   ================================================ */
