/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --mid: #2e2e2e;
  --earth1: #5c4033;
  --earth2: #8b6347;
  --earth3: #c4a882;
  --sand: #e8ddd0;
  --cream: #f5f0ea;
  --white: #ffffff;
  --accent: #9b7355;
  --heading: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;
  --radius: 8px;
  --trans: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--earth2);
  border-radius: 3px;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 130px;
  transition: background var(--trans), box-shadow var(--trans);
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  /* margin-top: 0; */
  height: 83px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--earth3);
  transition: width var(--trans);
}

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

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

.nav-links .nav-tour {
  border: 1px solid var(--earth3);
  color: var(--earth3);
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  transition: background var(--trans), color var(--trans);
}

.nav-links .nav-tour:hover {
  background: var(--earth3);
  color: var(--black);
}

.nav-links .nav-tour::after {
  display: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--trans);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: color var(--trans);
}

.mobile-menu a:hover {
  color: var(--earth3);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 5vw;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a110c 0%, #2e1f14 40%, #3d2b1a 70%, #1a1209 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-icon {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(196, 168, 130, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.video-placeholder-icon svg {
  width: 28px;
  fill: var(--earth3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
  /* La animación se dispara al activar el slide */
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--earth3);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--earth3);
  padding-bottom: 0.4rem;
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}


.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-logos {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-ministerio {
  height: 70px;
  width: auto;
  object-fit: contain;
}


.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider-container {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.active .hero-content {
  animation: heroFadeUp 1.2s ease forwards;
}

.hero-cta-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--earth3);
  color: var(--earth3);
  transition: all var(--trans);
  margin-top: 1rem;
}

.hero-cta-btn:hover {
  background: var(--earth3);
  color: var(--black);
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  pointer-events: none;
}

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  pointer-events: auto;
  font-size: 1.2rem;
}

.hero-nav-btn:hover {
  background: var(--earth3);
  border-color: var(--earth3);
  color: var(--black);
}

.hero-slider-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--trans);
}

.hero-slider-dots .dot.active {
  background: var(--earth3);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none;
  }
}

/* ===================== SECTION BASE ===================== */
section {
  padding: 6rem 5vw;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--earth2);
  margin-bottom: 2.5rem;
}

/* ===================== SLIDER / DESTACADOS ===================== */
#destacados {
  background: var(--dark);
}

.slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--mid);
}

.slider-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: var(--mid);
  transition: transform var(--trans);
}

.slider-card:hover {
  transform: scale(1.01);
}

.slider-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2e1f14 0%, #1a1209 100%);
  transition: transform var(--trans);
}

.slider-card:hover .slider-card-bg {
  transform: scale(1.04);
}

.slider-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.slider-card-content {
  position: relative;
  z-index: 1;
}

.slider-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth3);
  margin-bottom: 0.6rem;
  display: block;
}

.slider-card h3 {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.slider-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  transition: var(--trans);
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background: var(--earth3);
  color: var(--black);
}

.btn-outline {
  border: 1px solid var(--earth3);
  color: var(--earth3);
}

.btn-outline:hover {
  background: var(--earth3);
  color: var(--black);
}

/* ===================== SOBRE EL PROYECTO ===================== */
#sobre {
  background: var(--cream);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sobre-left .section-title {
  margin-bottom: 1rem;
}

.sobre-left p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.sobre-right {
  padding-top: 0.5rem;
}

.sobre-block {
  border-left: 2px solid var(--earth3);
  padding: 1.2rem 0 1.2rem 1.6rem;
  margin-bottom: 2rem;
}

.sobre-block h4 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--earth1);
  margin-bottom: 0.6rem;
}

.sobre-block p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--dark);
}

#blog .section-title {
  color: var(--white);
}

#blog .section-label {
  color: var(--earth3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.blog-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #2e1f14 0%, #3d2b1a 100%);
  position: relative;
  overflow: hidden;
}

.blog-card-img img,
.talleres-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}

.blog-card:hover .blog-card-img img,
.taller-card:hover .taller-card-img img {
  transform: scale(1.08);
}

/* ===================== TALLERES SLIDER ===================== */
#talleres {
  background: var(--white);
  overflow: hidden;
}

.talleres-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 3.5rem;
  padding-bottom: 3rem;
}

.talleres-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.taller-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.taller-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}

.taller-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.taller-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.taller-card-body h3 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.taller-card-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex: 1;
}

.taller-card-link {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--earth1);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--trans);
  align-self: flex-start;
  border: 1px solid var(--earth1);
}

.taller-card-link:hover {
  background: transparent;
  color: var(--earth1);
}

.slider-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--mid);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--dark);
}

.slider-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.slider-nav:hover {
  background: var(--earth2);
  border-color: var(--earth2);
  color: var(--white);
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .taller-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .taller-card {
    flex: 0 0 100%;
  }

  .talleres-track {
    gap: 1.5rem;
  }
}



.blog-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
}

.blog-img-icon svg {
  width: 20px;
  fill: var(--earth3);
}

.blog-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.blog-card-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-link {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans);
}

.blog-link:hover {
  gap: 0.8rem;
}

/* ===================== TALLER COLLAGE ===================== */
#taller {
  background: var(--cream);
}

.taller-hero {
  background: linear-gradient(135deg, #1a110c 0%, #2e1f14 60%, #3d2b1a 100%);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.taller-hero-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taller-hero-icon svg {
  width: 44px;
  fill: var(--earth3);
}

.taller-hero-text h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.taller-hero-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.taller-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.taller-info h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--earth1);
  margin-bottom: 1.2rem;
}

.taller-info p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.taller-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--earth2);
  border-radius: 2px;
  color: var(--earth1);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--trans);
}

.taller-download:hover {
  background: var(--earth1);
  color: var(--white);
}

.taller-download svg {
  width: 16px;
  fill: currentColor;
}

.taller-author {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 96px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--earth2), var(--earth1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--heading);
  font-size: 1.8rem;
  color: var(--white);
}

.taller-author h4 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.author-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.taller-author p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black);
  padding: 4rem 5vw 2rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-logos {
  margin: 1.5rem 0;
}

.footer-ministerio {
  height: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity var(--trans);
}

.footer-ministerio:hover {
  opacity: 1;
}

.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth3);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--trans);
}

.footer-col ul li a:hover {
  color: var(--earth3);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.8rem;
  transition: color var(--trans);
}

.footer-contact a:hover {
  color: var(--earth3);
}

.footer-contact a svg {
  width: 16px;
  fill: var(--earth3);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.social-link:hover {
  border-color: var(--earth3);
  background: rgba(155, 115, 85, 0.1);
}

.social-link svg {
  width: 16px;
  fill: rgba(255, 255, 255, 0.55);
}

.social-link:hover svg {
  fill: var(--earth3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .slider-grid {
    grid-template-columns: 1fr;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .taller-grid {
    grid-template-columns: 1fr;
  }

  .taller-hero {
    flex-direction: column;
    padding: 2.5rem 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 5vw;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}