@charset "UTF-8";
/* =========================
   ANIMACIONES
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================
   ESTILOS BASE
========================= */
body {
  background-color: #f8f9fa; /* mejor contraste */
  color: #212529;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita scroll horizontal */
}

/* Encabezados con jerarquía */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgb(172, 178, 178);
}

/* =========================
   LINKS Y BOTONES
========================= */
a {
  text-decoration: none;
  color: #004080;
  transition: color 0.3s ease;
}

a:hover {
  color: #0066cc;
}

/* Botón personalizado */
.btn-custom {
  background-color: #004080;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #0066cc;
  transform: scale(1.05);
}

/* Instagram destacado */
.instagram-link {
  font-size: 1.5rem;
  color: #E4405F;
  transition: transform 0.2s ease;
}

.instagram-link:hover {
  transform: scale(1.2);
}

/* =========================
   IMÁGENES
========================= */
img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 6px;
}

.css_images {
  width: 40px;
  height: 40px;
}

/* =========================
   TARJETAS
========================= */
.anime-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.anime-card:hover {
  transform: scale(1.05);
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 960px;
  margin: auto;
  padding: 1rem;
}

footer {
  font-size: 0.9rem;
  background-color: #004080;
  color: #fff;
  padding: 1rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  nav .navbar-nav {
    text-align: center;
    gap: 10px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  #carruselFiguras .carousel-item img {
    width: auto;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=main.css.map */
