
/* ------------------------ Efecto del Logo ------------------------  */


/* Efecto Glitch para desktop (hover) */
@media (hover: hover) {
  .navbar-logo:hover {
    animation: glitch 0.3s linear infinite;
  }
}

/* Efecto Glitch para móviles (active/tap) */
@media (hover: none) {
  .navbar-logo:active {
    animation: glitch 0.3s linear 2; /* 2 ciclos al tocar */
  }
}

/* Animación Glitch (personalizada con tus colores) */
@keyframes glitch {
  0% { 
    filter: drop-shadow(-2px 0 #CD3334); 
    transform: translateX(0);
  }
  25% { 
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(-2px);
  }
  50% { 
    filter: drop-shadow(-2px 0 #CD3334);
    transform: translateX(2px);
  }
  75% { 
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(0);
  }
  100% { 
    filter: none;
  }
}

/* ------------------------ Inicio - Menú  ------------------------  */
/* Estilos generales de la barra de navegación */
.navbar {
  width: 100%;
  background-color: #F3F3F3;
  border-bottom: 5px solid black;
  padding: 0.5rem;
}

/* Estilos del logo/brand */
.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

/* Estilos del botón hamburguesa */
.navbar-toggler {
  border: 3px solid #CD3334;
  padding: 0.5rem;
  margin-right: 1rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

/* Estilos de los enlaces del menú */
.navbar-nav .nav-link {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #E28413; /* Color al pasar el mouse */
  background-color: rgba(0, 0, 0, 0.05);
}

/* Estilos del dropdown */
.dropdown-menu {
  background-color: #CD3334;
  border: none;
  padding: 0;
  border: 3px solid black;
}

.dropdown-item {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #060606;
  color: #ffffff;
}

/* Mostrar dropdown al hacer hover (solo en desktop) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Botón WhatsApp */
.btn-whatsapp {
  background-color: transparent;
  color: #25D366;
  font-weight: bold;
  border: 4px solid #25D366;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: 1rem;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Matter SQ Regular', sans-serif;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: white;
}

/* Estilos responsivos */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .dropdown-menu {
    background-color: #CD3334;
    margin-left: 1rem;
    width: calc(100% - 2rem);
  }
  
  .btn-whatsapp {
    margin: 1rem auto;
    display: block;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 768px) {
  .navbar-brand, .nav-link, .btn-whatsapp {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    max-height: 40px;
  }
}

/* ------------------------ FIN - Menú  ------------------------  */


/* ------------------------ Estilos Contacto ------------------------ */
.contacto-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(#32ACC5, #CD3334), 
              url('images/hero-contacto.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-bottom: 5px solid #000;
}

.contacto-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacto-main-content {
  transform: translateY(-10%);
}

.contacto-titulo {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Hakuna Sans', sans-serif;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .contacto-titulo {
      font-size: 4rem;
      letter-spacing: 3px;
  }
}

.contacto-titulo-destacado {
  color: #CD3334;
  display: inline-block;
  position: relative;
}

.contacto-titulo-destacado::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #E28413;
}

.contacto-subtitulo {
  font-size: 1.2rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

@media (min-width: 768px) {
  .contacto-subtitulo {
      font-size: 1.5rem;
  }
}

.contacto-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  z-index: 3;
  transition: all 0.3s ease;
}

.contacto-scroll-down:hover {
  transform: translateX(-50%) translateY(5px);
}

.contacto-scroll-down span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contacto-scroll-arrow {
  width: 18px;
  height: 28px;
  border: 2px solid white;
  border-radius: 10px;
  position: relative;
}

.contacto-scroll-arrow::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

.contacto-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Estilos del formulario */
.contacto-form-section {
  background-color: #f8f9fa;
}

.form-control {
  border-radius: 0;
  border: 1px solid #ced4da;
  padding: 10px 15px;
}

.form-control:focus {
  border-color: #E28413;
  box-shadow: 0 0 0 0.2rem rgba(226, 132, 19, 0.25);
}

.btn-enviar {
  background-color: #CD3334;
  color: white;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background-color: #b32b2c;
  color: white;
}

/* Estilos información de contacto */
.contacto-info {
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contacto-item {
  display: flex;
  margin-bottom: 20px;
}

.contacto-icono {
  width: 40px;
  height: 40px;
  background-color: #E28413;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contacto-datos h5 {
  color: #CD3334;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contacto-datos a {
  color: #495057;
  transition: color 0.3s ease;
}

.contacto-datos a:hover {
  color: #E28413;
  text-decoration: none;
}

@keyframes scrollDown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}

/* --------------------- FOOTER MEJORADO --------------------- */
#footer {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Nunito', sans-serif;
  padding: 50px 0 20px;
  border-top: 4px solid #000000;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  padding: 15px;
  transition: all 0.3s ease;
}

.footer-box {
  border: 3px solid #060606;
  padding: 20px;
  height: 100%;
  box-shadow: 4px 4px #000000;
  background: white;
  transition: all 0.3s ease;
}

/* Efectos hover con los colores específicos */
.footer-col[data-hover-color="#32ACC5"]:hover .footer-box {
  background-color: #32ACC5;
}
.footer-col[data-hover-color="#6EC1E4"]:hover .footer-box {
  background-color: #6EC1E4;
}
.footer-col[data-hover-color="#E28413"]:hover .footer-box {
  background-color: #E28413;
}
.footer-col[data-hover-color="#CD3334"]:hover .footer-box {
  background-color: #CD3334;
}

.footer-col:hover .footer-box {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px #000000;
}

.footer-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #000;
}

.footer-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mapa del sitio mejor organizado */
.sitemap-section {
  margin-bottom: 1rem;
}

.sitemap-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.sitemap-links {
  list-style: none;
  padding-left: 0;
}

.sitemap-links li {
  margin-bottom: 0.3rem;
}

.sitemap-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 0;
  transition: all 0.2s ease;
}

.sitemap-links a:hover {
  color: #000;
  font-weight: bold;
  padding-left: 5px;
}

.sitemap-links a:before {
  content: "•";
  margin-right: 5px;
  color: #E28413;
}

/* Contacto */
.contact-list {
  list-style: none;
  
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.contact-list i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #000;
}

.contact-list a {
  color: #333333; /* Mismo color que el texto normal del footer */
  text-decoration: none; /* Quita el subrayado */
  transition: all 0.3s ease; /* Transición suave para efectos hover */
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  color: #000;
  background: #fff;
  border: 2px solid #000;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* Copyright */
.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #000;
}

.copyright p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-box {
    padding: 15px;
  }
}

@media (max-width: 767.98px) {
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-text, .contact-list li, .sitemap-links a {
    font-size: 0.85rem;
  }
}


/* 
Efecto Smooth sobre el mouse haciendo scrool  */
html {
  scroll-behavior: smooth;
}


/* ------------------------ Estilos Historia ------------------------ */
/* ------------------------ Estilos Historia ------------------------ */
.historia-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(#32ACC5, #CD3334), 
              url('images/hero-historia.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-bottom: 5px solid #000;
}

.historia-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.historia-main-content {
  transform: translateY(-20%);
}

.historia-titulo {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Hakuna Sans', sans-serif;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .historia-titulo {
      font-size: 3.5rem;
      letter-spacing: 3px;
  }
}

.historia-titulo-destacado {
  color: #CD3334;
  display: inline-block;
  position: relative;
}

.historia-titulo-destacado::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #E28413;
}

.historia-subtitulo {
  font-size: 1.2rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

@media (min-width: 768px) {
  .historia-subtitulo {
      font-size: 1.5rem;
  }
}

.historia-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  z-index: 3;
  transition: all 0.3s ease;
}

.historia-scroll-down:hover {
  transform: translateX(-50%) translateY(5px);
}

.historia-scroll-down span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.historia-scroll-arrow {
  width: 18px;
  height: 28px;
  border: 2px solid white;
  border-radius: 10px;
  position: relative;
}

.historia-scroll-arrow::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

.historia-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

@keyframes scrollDown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}


/* Sección Orígenes */
.origenes-seccion {
  padding: 80px 20px;
  background-color: #F3F3F3;
  border-bottom: 5px solid #000;
}

.origenes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.origenes-imagen {
  position: relative;
  flex: 1;
}

.origenes-img {
  width: 100%;
  height: auto;
  border: 5px solid #000;
  box-shadow: 10px 10px 0px #000;
  transition: transform 0.3s ease;
}

.origenes-img:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0px #000;
}

.origenes-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #CD3334;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: 3px solid #000;
  font-family: 'Hakuna Sans', sans-serif;
  font-size: 1.2rem;
}

.origenes-content {
  flex: 1;
}

.origenes-titulo {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Hakuna Sans', sans-serif;
  text-transform: uppercase;
}

.texto-destacado {
  color: #CD3334;
  position: relative;
  display: inline-block;
}

.texto-destacado::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E28413;
}

.origenes-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.origenes-frase {
  background-color: #fff;
  border: 3px solid #000;
  padding: 20px;
  position: relative;
  box-shadow: 5px 5px 0px #000;
}

.origenes-frase p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.origenes-frase span {
  font-weight: bold;
  color: #CD3334;
}

/* Sección Evolución */
.evolucion-seccion {
  padding: 80px 20px;
  background-color: #32ACC5;
  color: white;
  border-bottom: 5px solid #000;
}

.evolucion-header {
  text-align: center;
  margin-bottom: 50px;
}

.evolucion-titulo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Hakuna Sans', sans-serif;
  text-transform: uppercase;
}

.evolucion-subtitulo {
  font-size: 1.5rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  z-index: 2;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
}

.timeline-year {
  position: absolute;
  top: 0;
  width: 80px;
  height: 80px;
  background: #CD3334;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 5px 5px 0px #000;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-content {
  width: calc(50% - 70px);
  padding: 20px;
  background: white;
  color: #000;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
}

.timeline-content h3 {
  color: #CD3334;
  margin-bottom: 0.5rem;
  font-family: 'Hakuna Sans', sans-serif;
}

.timeline-content p {
  font-family: 'Matter SQ Regular', sans-serif;
}

/* Sección Valores */
.valores-seccion {
  padding: 80px 20px;
  background-color: #F3F3F3;
  border-bottom: 5px solid #000;
}

.valores-header {
  text-align: center;
  margin-bottom: 50px;
}

.valores-titulo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Hakuna Sans', sans-serif;
  text-transform: uppercase;
}

.valores-subtitulo {
  font-size: 1.5rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.valor-card {
  background: white;
  padding: 30px;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
}

.valor-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px #000;
  background: #6EC1E4;
  color: white;
}

.valor-card:hover h3 {
  color: white;
}

.valor-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.valor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #CD3334;
  font-family: 'Hakuna Sans', sans-serif;
}

.valor-card p {
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.6;
}

/* Sección Equipo */
.equipo-seccion {
  padding: 80px 20px;
  background-color: #fff;
  border-bottom: 5px solid #000;
}

.equipo-header {
  text-align: center;
  margin-bottom: 50px;
}

.equipo-titulo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Hakuna Sans', sans-serif;
  text-transform: uppercase;
}

.equipo-subtitulo {
  font-size: 1.5rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.equipo-card {
  background: #F3F3F3;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  overflow: hidden;
}

.equipo-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px #000;
}

.equipo-imagen {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.equipo-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipo-card:hover .equipo-imagen img {
  transform: scale(1.1);
}

.equipo-redes {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(205, 51, 52, 0.9);
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.equipo-card:hover .equipo-redes {
  bottom: 0;
}

.equipo-redes a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.equipo-info {
  padding: 20px;
}

.equipo-info h3 {
  font-size: 1.5rem;
  color: #CD3334;
  margin-bottom: 0.5rem;
  font-family: 'Hakuna Sans', sans-serif;
}

.equipo-info p {
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.6;
}

.equipo-cta {
  text-align: center;
  margin-top: 50px;
}

.equipo-cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.equipo-boton {
  display: inline-block;
  padding: 12px 30px;
  background: #CD3334;
  color: white;
  border: 3px solid #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  font-family: 'Hakuna Sans', sans-serif;
}

.equipo-boton:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000;
}

/* Sección Futuro */
.futuro-seccion {
  padding: 80px 20px;
  background-color: #6EC1E4;
  border-bottom: 5px solid #000;
}

.futuro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.futuro-content {
  flex: 1;
}

.futuro-titulo {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Hakuna Sans', sans-serif;
  text-transform: uppercase;
}

.futuro-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.futuro-datos {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

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

.futuro-numero {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #CD3334;
  font-family: 'Hakuna Sans', sans-serif;
}

.futuro-label {
  display: block;
  font-size: 1rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.futuro-imagen {
  position: relative;
  flex: 1;
}

.futuro-img {
  width: 100%;
  height: auto;
  border: 5px solid #000;
  box-shadow: 10px 10px 0px #000;
  transition: transform 0.3s ease;
}

.futuro-img:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0px #000;
}

.futuro-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #E28413;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: 3px solid #000;
  font-family: 'Hakuna Sans', sans-serif;
  font-size: 1.2rem;
  transform: rotate(5deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .origenes-container, .futuro-container {
      flex-direction: column;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
      justify-content: flex-start;
      padding-left: 70px;
      padding-right: 0;
  }
  
  .timeline-content {
      width: 100%;
  }
  
  .timeline-year {
      left: 0;
      transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .historia-titulo {
      font-size: 3rem;
  }
  
  .historia-subtitulo {
      font-size: 1.3rem;
  }
  
  .origenes-titulo, .evolucion-titulo, .valores-titulo, .equipo-titulo, .futuro-titulo {
      font-size: 2rem;
  }
  
  .origenes-subtitulo, .evolucion-subtitulo, .valores-subtitulo, .equipo-subtitulo {
      font-size: 1.2rem;
  }
  
  .futuro-datos {
      flex-direction: column;
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .historia-titulo {
      font-size: 2.5rem;
  }
  
  .valor-card, .equipo-card {
      min-width: 100%;
  }
}