@charset "UTF-8";
/**
 * Estilos para el Hero del Blog - The GAP View
 * Template: sections/blog-hero.html
 * Usa SOLO variables CSS (var) del sistema GAP
 */
body {
  background: white;
}

.blog-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--projects-header-bg);
  background: var(--color-gray-900);
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .blog-hero {
    min-height: 400px;
    padding: 3rem 0;
  }
}
.blog-hero .blog-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blog-hero .blog-hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(0.5px);
}
.blog-hero .container {
  position: relative;
  z-index: 2;
}
.blog-hero .blog-hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.blog-hero .blog-hero-content .blog-title {
  font-family: var(--blog-title-font);
  font-weight: var(--blog-title-weight);
  font-weight: var(--blog-title-weight);
  font-size: var(--blog-title-size);
  font-style: var(--blog-title-style);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-thight);
  margin-bottom: 0;
  cursor: pointer;
  transition: letter-spacing 0.3s ease-out, opacity 0.3s ease-out;
  text-transform: uppercase;
  background: linear-gradient(135deg, white 0%, var(--color-primary) 100%);
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-hero .blog-hero-content .blog-title:hover {
  letter-spacing: 0.1em;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .blog-hero .blog-hero-content .blog-title {
    font-size: 2.5rem;
  }
}
.blog-hero .blog-hero-content .blog-subtitle {
  font-family: var(--font-text);
  font-weight: var(--font-light);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--color-warning);
  margin-bottom: 1.5rem;
  font-style: italic;
  transition: all 0.3s ease-in-out;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(0, 0, 0, 0.1); /* Pequeña sombra de profundidad */
}
.blog-hero .blog-hero-content .blog-subtitle:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px var(--color-primary), 0 0 30px rgba(0, 0, 0, 0.2); /* Sombra de profundidad */
  transform: translateY(-2px);
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  cursor: pointer;
}
@media (max-width: 768px) {
  .blog-hero .blog-hero-content .blog-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.blog-hero .blog-hero-content .blog-tagline {
  font-family: var(--font-text);
  font-weight: var(--font-regular);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: var(--lh-relaxed);
}
@media (max-width: 768px) {
  .blog-hero .blog-hero-content .blog-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.blog-hero .blog-hero-content .btn {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
  text-decoration: none;
}
.blog-hero .blog-hero-content .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.blog-hero .blog-hero-content .btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .blog-hero .blog-hero-content .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}
.blog-hero .blog-hero-content .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.blog-hero .blog-hero-content .btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.blog-hero .blog-hero-content .btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.blog-hero .blog-hero-content .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.blog-hero .blog-hero-content .btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
}
.blog-hero .blog-hero-content .btn-secondary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-hero-content {
  animation: fadeInUp 0.8s ease-out;
}
.blog-hero-content .blog-title {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.blog-hero-content .blog-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.blog-hero-content .blog-tagline {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.blog-hero-content .btn {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.blog-hero + .blog-hero {
  margin-top: -1px;
  border-top: 1px solid var(--border-color-light);
}/*# sourceMappingURL=blog-hero.css.map */