/* ============================================
   NAVIGATION COMPONENTS
   ============================================ */

.nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav-logo-image {
  width: auto;
  height: 30px;

}

.nav-logo-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 400;
}

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

.btn-nav {
  border: 1px solid var(--color-concrete);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-slow);
  font-weight: 500;
}

.btn-nav:hover {
  background: var(--color-brick);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

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

.hero {
  text-align: center;
  max-width: min(900px, 90vw);
  margin: 0 auto;
}

/* Eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-brick);
}

/* Main headline */
.hero-headline {
  font-family: 'Bricap', sans-serif;
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-8);
}

.hero-headline em {
  font-style: italic;
  color: var(--color-brick);
  transition: color var(--transition-slow);
}

.hero-headline:hover em {
  color: var(--color-brick-light);
}

/* Subheadline */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: var(--space-12);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to action buttons */
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-brick);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-slow);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  border: 1px solid currentColor;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.btn-ghost:active {
  transform: scale(0.98);
}

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

.footer-left,
.footer-right {
  flex: 1;
}

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

.footer-tagline,
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-tagline {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ============================================
   RESPONSIVE COMPONENTS
   ============================================ */

/* Tablet y menores */
@media (max-width: 768px) {
  /* Ocultar links del nav, mantener logo y botón */
  .nav-links {
    display: none;
  }

  /* Hero adjustments */
  .hero-headline {
    line-height: 1.1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  /* Ocultar también el botón nav */
  .btn-nav {
    display: none;
  }

  /* Hero */
  .hero-sub br {
    display: none;
  }

  /* Footer */
  .footer-nav {
    flex-direction: column;
    gap: var(--space-3);
  }
}
