/* slider */
:root {
  --header-height: 80px; /* se actualizará por JS */
}

.full-screen {
  position: relative;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.custom-slider .slides {
  height: 100%;
  position: relative;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  display: block;
}

.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff ; /* 🔥 TEXTO BLANCO */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9); /* para que sea legible */
  z-index: 10;
}

.slider-overlay h1,
.slider-overlay p {
  color: #ffffff !important;
  opacity: 1 !important;
  display: block !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
}

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

.slider-overlay h1 {
  font-size: 5rem;
  line-height: 1.2;
  color: white;
  text-align: center;
}

.slider-overlay p {
  font-size: 2rem;
  color: white;
  text-align: center;
}

.animated-text {
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
}

100% {
  opacity: 1;
    transform: translateY(0);
}

}

.nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 20;
}

.nav .prev {
  left: 10px;
}

.nav .next {
  right: 10px;
}

.dots {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ffffff; /* completamente blanco */
}

/* Responsive texto */
@media (max-width: 768px) {
  .slider-overlay h1 {
    font-size: 32px;
}

.slider-overlay p {
  font-size: 16px;
}

}
/* Animación de entrada del título */
.fade-in-title {
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
}

}

/* Efecto "typing" del subtítulo */
.typing {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  animation: typing 1.8s steps(30, end) forwards;
}

@keyframes typing {
  from { width: 0;
}

to {
  width: 100%;
}

}

/* fin slider */


.zante-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.zante-slider-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  min-width: 300px;
}

.zante-slider-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
/* MAPA LINCE */
.mapa-lince-preview {
  margin-top: -5rem;
}
.mapa-fundido {
  position: relative;
  overflow: hidden;
}

.mapa-fundido::before,
.mapa-fundido::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 25px; /* Ajusta según tu diseño */
  z-index: 10;
  pointer-events: none;
}

.mapa-fundido::before {
  top: 0;
  background: linear-gradient(to bottom, white, transparent);
}

.mapa-fundido::after {
  bottom: 0;
  background: linear-gradient(to top, white, transparent);
}

.mapa-fundido .after-left,
.mapa-fundido .after-right {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  z-index: 10;
  pointer-events: none;
}

.mapa-fundido .after-left {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.mapa-fundido .after-right {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}


/* === GENERAL === */
  html, body {
  margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === LOADING SPINNER === */
  #loading {
  position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === WRAPPER MISTERPLAN === */
  .misterplan-wrapper {
  margin-top: -230px;
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === SKELETON LOADER === */
#ruralgest-skeleton {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* alineamos arriba para calcular manualmente */
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  height: 110px;
  padding: 0 30px;
  background: #f6f6f6;
  border-radius: 7px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.bloque-fecha,
.bloque-boton {
  width: 160px;
  height: 55px;
  border-radius: 16px;
  background: linear-gradient(90deg, #dddddd 25%, #cccccc 50%, #dddddd 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-top: 12.5px; /* (110 - 30 - 55) / 2 */
}

.skeleton-divider {
  width: 1px;
  height: 55px;
  background: #ccc;
  margin-top: 12.5px;
}

.ruralgest-skeleton-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: #e6e5e5;
  border-radius: 0 0 7px 7px;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* === APARTAMENTOS SAN GINÉS === */
.apartamentos-san-gines {
  padding: 100px 20px;
  background: #fff;
  overflow: hidden;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.apartamentos-san-gines .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* === COLUMNA TEXTO === */
.text-col {
  flex: 1 1 500px;
    text-align: center;
  /* max-width: 700px; */
  min-width: 320px;
}

.text-col .title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.3;
  color: #333;
}

.text-col .subtitle {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 400;
}

.text-col .intro {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #444;
}

.text-col .desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}

/* === COLUMNA IMÁGENES === */
.image-col {
  flex: 1 1 500px;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* === STACK DE IMÁGENES ABANICO === */
.image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.image-stack.abanico {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/10;
  max-height: 250px;
  cursor: pointer;
  overflow: visible;
}

.img-fan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Posiciones visuales con clases */
.pos-1 {
  transform: translate(0px, 0px) rotate(0deg); z-index: 5;
}

.pos-2 {
  transform: translate(20px, 20px) rotate(3deg); z-index: 4;
}

.pos-3 {
  transform: translate(40px, 40px) rotate(6deg); z-index: 3;
}

.pos-4 {
  transform: translate(60px, 60px) rotate(9deg); z-index: 2;
}

.pos-5 {
  transform: translate(80px, 80px) rotate(12deg); z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .image-stack.abanico {
    max-height: 200px;
}

.pos-2 {
  transform: translate(12px, 12px) rotate(2deg);
}

.pos-3 {
  transform: translate(24px, 24px) rotate(4deg);
}

.pos-4 {
  transform: translate(36px, 36px) rotate(6deg);
}

.pos-5 {
  transform: translate(48px, 48px) rotate(8deg);
}

}


/* === FAUNA SLIDER === */
.zante-slider-image,
.zante-services-tabs {
  flex: 1 1 50%;
  display: flex;
  /* flex-direction: column; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.zante-services-tabs {
  flex: 1 1 500px;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-evenly;
  gap: 20px;
}

.tabs-scroll-mobile {
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
}

.tabs-scroll-mobile .service-tab {
  display: flex;
   align-items: center;
  /* flex-direction: column; */
  gap: 15px;
  padding: 26px 24px;
  border-radius: 14px;
  transition: background 0.3s;
  background: #f7f7f7;
  color: #000;
  white-space: normal;
}

.tabs-scroll-mobile .service-tab.active {
  background: #2c2c2c;
  color: #fff;
}

.tabs-scroll-mobile .service-tab img {
  width: 48px;
  height: 48px;
}

.tabs-scroll-mobile .service-text {
  flex: 1;
}

.tabs-scroll-mobile .service-tab {
  cursor: pointer;
}

.service-tab img {
  transition: filter 0.3s;
}

/* Cuando está activa */
.service-tab.active img {
  filter: brightness(0) invert(1);
}

.tabs-scroll-mobile .service-tab h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: inherit;
}

.tabs-scroll-mobile .service-tab p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: inherit;
}

@media (max-width: 768px) {
  .zante-container {
    flex-direction: column;
}

.zante-slider-image,
  .zante-services-tabs {
  width: 100%;
    flex: none;
}

.tabs-scroll-mobile {
  flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    max-width: 100vw; /* Límite estricto al viewport */
    overflow-y: hidden;
}

.tabs-scroll-mobile .service-tab {
  flex: 0 0 280px;
    scroll-snap-align: center;
}

.tabs-scroll-mobile .service-tab:last-child {
  margin-right: 20px; /* Espacio final para mejor scroll UX */
}

}

@media (max-width: 1150px) {
  .tabs-scroll-mobile {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.tabs-scroll-mobile .service-tab {
  flex: 0 0 calc(100% / 3.5);
    max-width: calc(100% / 3.5);
    min-width: calc(100% / 3.5);
    scroll-snap-align: start;
}

}
@media (max-width: 750px) {
  .tabs-scroll-mobile {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.tabs-scroll-mobile .service-tab {
  flex: 0 0 calc(100% / 2.5);
    max-width: calc(100% / 2.5);
    min-width: calc(100% / 2.5);
    scroll-snap-align: start;
}

}
@media (max-width: 570px) {
  .tabs-scroll-mobile {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.tabs-scroll-mobile .service-tab {
  flex: 0 0 calc(100% / 1.2);
    max-width: calc(100% / 1.2);
    min-width: calc(100% / 1.2);
    scroll-snap-align: start;
}

}

/* galeria pulgares */
.galeria-fauna {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.galeria-filtros {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.galeria-filtros .filtro {
  font-size: 1.7rem;          /* Aumenta el tamaño del texto */
  padding: 0.75rem 2rem;      /* Más espacio interior */
  border-radius: 2rem;        /* Bordes redondeados */
  min-width: 150px;           /* Ancho mínimo más generoso */
  text-align: center;
  font-weight: 600;           /* Letras más marcadas */
  transition: all 0.3s ease;
}

.galeria-filtros .filtro.active {
  font-size: 1.7rem;
  padding: 0.75rem 2rem;
}

.galeria-filtros .filtro:focus {
  background-color: black;
  color: white;
  outline: none; /* quitar el borde azul del navegador */
}

.galeria-filtros .filtro {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.filtro {
  background: #eee;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.filtro.active {
  background: #000;
  color: #fff;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 25px;
  padding: 20px;
}

.tarjeta-galeria .imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tarjeta-galeria {
  border-radius: 12px;
  
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  max-width: 100%;
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móviles */
    gap: 20px;
}

}

.tarjeta-galeria {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.tarjeta-galeria:hover {
  transform: translateY(-6px);
}

.tarjeta-galeria .imagen {
  position: relative;
  
  overflow: hidden;
  height: 220px; 
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tarjeta-galeria .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarjeta-galeria .overlay {
  background: #4B4B4B;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

/* 1. Estilo general del visor */
.fancybox__slide {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. Imagen bien encajada y centrada */
.fancybox__image {
  max-width: 90vw !important;
  max-height: 80vh !important;
  object-fit: contain !important;
  border-radius: 16px;
  margin: 0 auto;
}

/* 3. Botón cerrar visible y redondo */
.fancybox__toolbar__button--close {
  background: #000 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 36px;
  height: 36px;
  font-size: 18px;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999;
}

/* 4. Miniaturas más pequeñas y ordenadas */
.fancybox__thumbs {
  padding: 8px 0;
}

.fancybox__thumbs__track {
  gap: 6px;
}

.fancybox__thumbs__slide {
  border-radius: 6px;
  overflow: hidden;
}

/* 5. Flechas navegación */
.fancybox__nav .fancybox__button {
  background: #d5b16f !important;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* 6. Evitar zoom */
.fancybox__container {
  touch-action: none;
   z-index: 99999 !important;
}

.ver-mas-btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ver-mas-btn:hover {
  background-color: #000;
}

.tarjeta-galeria {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tarjeta-galeria.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ver-mas-btn {
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(to right, #333, #111);
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.ver-mas-btn:hover {
  background: linear-gradient(to right, #444, #222);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  /* Botones de filtros scroll horizontal */
  .galeria-filtros {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    scroll-snap-type: x mandatory;
    margin-bottom: 1rem;
}

.galeria-filtros .filtro {
  font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    min-width: auto;
    white-space: nowrap;
    flex: 0 0 auto;
}

.galeria-filtros::-webkit-scrollbar {
  display: none; /* Ocultar scrollbar en móviles */
}

.filtro {
  flex: 0 0 auto;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    scroll-snap-align: start;
}

.filtro.active,
  .filtro:focus {
  background-color: black;
    color: white;
}

/* 2 columnas cuadradas */
  .galeria-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr,);
    gap: 1rem;
    padding: 0 1rem;
}

.galeria-grid {
  grid-template-columns: repeat(2, 1fr);
}

.galeria-grid {
  grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

}
/* 1️⃣ Por defecto: 4 columnas */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 2️⃣ Entre 921px y 1200px → 3 columnas */
@media (max-width: 1200px) and (min-width: 921px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
}

}

/* 3️⃣ Entre 769px y 920px → 2 columnas */
@media (max-width: 920px) and (min-width: 769px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
}

}

/* 4️⃣ Móviles (hasta 768px) → 2 columnas */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.tarjeta-galeria .imagen {
  aspect-ratio: 1 / 1;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 1rem 1rem 0 0;
}

.tarjeta-galeria .overlay {
  padding: 0.75rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
    color: white;
    background-color: #777;
    border-radius: 0 0 1rem 1rem;
}}

/* SUBENCIONES */
.subvencion-europea {
  padding: 60px 20px;
  background-color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

.subvencion-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-subvencion img {
  max-width: 300px;
  height: auto;
  display: block;
}

.texto-subvencion {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .subvencion-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .texto-subvencion {
    font-size: 1.3rem;
  }

  .logo-subvencion img {
    margin-bottom: 20px;
  }
}


/* COMENTARIOS CLIENTES */
.opiniones-home {
  padding: 60px 20px;
  background-color: #f8f9fa;
 
  justify-content: center;
}
.flex{display: flex;
justify-content: center;}


.contenedor-opiniones {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.opinion-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  padding: 30px 40px;
  max-width: 360px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.opinion-card:hover {
  transform: translateY(-5px);
}

.opinion-texto {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}

.opinion-texto::before {
  content: "“";
  font-size: 40px;
  color: #ffc107;
  position: absolute;
  left: -20px;
  top: -10px;
}

.opinion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autor-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.autor {
  font-weight: 600;
  color: #444;
}

.rating-fecha {
  text-align: right;
  font-size: 14px;
  color: #888;
}

.puntuacion {
  color: #ff9800;
  font-weight: 600;
}
.opinion-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.opinion-card .star {
  font-size: 18px;
  color: #ddd; /* gris claro para estrellas vacías */
  transition: color 0.3s;
}

.opinion-card .star.filled {
  color: #ffb400; /* dorado para estrellas llenas */
}

.opiniones-home {
  padding: 60px 20px;
  background-color: #f8f9fa;
  /* No uses display: flex aquí */
  justify-content: center; /* Esto tampoco hace nada sin display: flex */
}

.titulo-opiniones {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

/* indicativo de hacer clic */

.tiene-overlay-clic {
  position: relative;
}

.tiene-overlay-clic .overlay-indicador {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 100%; /* para que no se pase del borde si hay spacing */
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.overlay-indicador img {
  width: 64px;
  animation: tap-finger 1.2s ease-in-out infinite;
  pointer-events: none;
   filter: invert(1) brightness(2);
}

/* animación estilo "tap" */
@keyframes tap-finger {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  30% { transform: translateY(5px) scale(0.95); opacity: 0.9; }
  60% { transform: translateY(0) scale(1); opacity: 1; }
}

.overlay-indicador span {
  margin-top: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
