* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

.slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;

  height: 600px !important; /* ALTURA FIJA PARA TODOS */
}

.slider,
.slider li {
  height: 100% !important;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover !important; /* FORZA MISMO TAMAÑO */
  object-position: center;
}

.slider li,
ul {
  width: 100%;
}

.slider li img {
  width: 100%;
}

.slider .caption {
  position: absolute;
  width: 40%;
  height: 100%;
  top: -40px;
  left: 0;
  padding: 15px 10px 15px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.slider .caption h1 {
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 150px;
}

.slider .caption p {
  margin-top: 10px;
  font-size: 20px;
}
/* CONTENEDOR DE TEXTO - ¡MÁS GRANDE Y CENTRADO! */
.contenedor-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  text-align: center;
  z-index: 10;
  padding: 40px;
}
/* LOGO - ¡MÁS GRANDE Y PROPORCIONAL! */
.logo-banner {
  width: 200px !important; /* DOBLE DEL ANTERIOR */
  height: 200px !important; /* DOBLE DEL ANTERIOR */
  object-fit: contain !important; /* MANTIENE PROPORCIONES */
  margin: 0px auto 0px;
  display: block;
  animation:
    entradaLogo 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
    flotarLogo 6s ease-in-out infinite 1.5s;
  opacity: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}
@keyframes entradaLogo {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes flotarLogo {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-10px) rotate(1deg);
  }
}
/* LOGO A LA DERECHA CENTRADO VERTICALMENTE */
.logo-derecha {
    position: absolute;
    top: 30%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 12;
    width: 250px;
    height: 250px;
}

.logo-banner {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    animation:
        entradaLogo 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
        flotarLogo 6s ease-in-out infinite 1.5s;
    opacity: 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}
/* EFECTO DE DESTELLO EN TEXTO */
.destello {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: destello 3s ease-in-out infinite 2s;
}

@keyframes destello {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ANIMACIONES ALTERNATIVAS - ¡MÁS VARIEDAD! */
.animacion-derecha {
  animation: entradaDesdeDerecha 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards !important;
  transform: translateX(150px) !important;
}

@keyframes entradaDesdeDerecha {
  0% {
    opacity: 0;
    transform: translateX(150px) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: translateX(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.animacion-arriba {
  animation: entradaDesdeArriba 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards !important;
  transform: translateY(-150px) !important;
}

@keyframes entradaDesdeArriba {
  0% {
    opacity: 0;
    transform: translateY(-150px) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animacion-zoom {
  animation: entradaZoom 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  transform: scale(0.3) !important;
}

@keyframes entradaZoom {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(180deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.1) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
/* RESPONSIVE - ¡MANTIENE IMPACTO! */
@media (max-width: 992px) {
  .slideshow {
    height: 500px !important;
  }
  .texto-grande {
    font-size: 3.0rem !important;
  }
  .texto-mediano {
    font-size: 2rem !important;
  }
  .logo-banner {
    width: 150px !important;
    height: 150px !important;
  }
}

@media (max-width: 768px) {
  .slideshow {
    height: 400px !important;
  }
  .texto-grande {
    font-size: 2.6rem !important;
    letter-spacing: 2px;
  }
  .texto-mediano {
    font-size: 1.6rem !important;
    padding: 10px 20px;
  }
  .logo-banner {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 480px) {
  .slideshow {
    height: 350px !important;
  }
  .texto-grande {
    font-size: 2.2rem !important;
    letter-spacing: 1px;
  }
  .texto-mediano {
    font-size: 1.3rem !important;
    padding: 8px 16px;
  }
}

/* EFECTO DE PARTICULAS (OPCIONAL) */
.particula {
  position: absolute;
  background: rgba(255, 215, 0, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  animation: caerParticula linear infinite;
}

@keyframes caerParticula {
  to {
    transform: translateY(600px) rotate(360deg);
  }
}
/* TEXTO PRINCIPAL - ¡MUY GRANDE Y CON SOMBRA! */
.texto-grande {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  text-shadow:
    3px 3px 0 #285e3a,
    6px 6px 0 rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 60px rgba(76, 175, 80, 0.3);
  animation: entradaTextoGrande 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
  opacity: 0;
  transform: translateY(100px);
}

@keyframes entradaTextoGrande {
  /* 0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  } */
  100% {
    opacity: 1;
    transform: translateY(0) scale(0.8);
  }
}

/* TEXTO SECUNDARIO - ¡TAMBIÉN GRANDE! */
.texto-mediano {
  font-size: 1.8rem !important;
  font-weight: 600;
  color: #ffd700;
  text-shadow:
    2px 2px 0 #285e3a,
    4px 4px 0 rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.5);
  animation: entradaTextoMediano 1.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-150px);
  animation-delay: 0.5s;
  margin-top: 10px;
  padding: 10px 15px;
  background: rgba(40, 94, 58, 0.3);
  line-height: 1;
  border-radius: 15px;
  display: inline-block;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

@keyframes entradaTextoMediano {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(-10deg);
  }
  70% {
    opacity: 1;
    transform: translateX(30px) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

.overlay-dinamico {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(40, 94, 58, 0.7) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(40, 94, 58, 0.5) 100%
  );
  z-index: 1;
}
.pagination {
  position: absolute;
  top: 102%;
  width: 100%;

  display: flex;
  justify-content: center;
}

.pagination li {
  font-size: 20px;
  margin: 2px 5px;
  color: #858585;
  cursor: pointer;
}

.left,
.right {
  position: absolute;
  top: 0;
  height: 100%;

  display: flex;
  align-items: center;

  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

@media screen and (max-width: 950px) {
  .slideshow {
    margin-top: 115px;
  }
  .slider .caption h1 {
    font-size: 1.8em;
    color: blue;
  }
  .slider .caption p {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 800px) {
  .slideshow {
    margin-top: 170px;
  }
  .slider .caption h1 {
    margin-top: 90px;
    font-size: 1.7em;
    color: rgb(27, 165, 45);
  }
  .slider .caption p {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 600px) {
  .slideshow {
    background-color: khaki !important;
    margin-top: 140px;
    width: 100%;
  }
  .slider .caption {
    padding: 15px 10px 15px 50px;
  }
  .slider .caption p {
    /* display: none; */
    font-size: 0.9em;
  }

  .slider .caption h1 {
    font-size: 1.3em;
  }

  .left,
  .right {
    font-size: 30px;
  }

  /* .slider li img{
		width: 600px;
	} */

  .pagination {
    display: none;
  }
}

/* MANTENER TODO EL CSS ANTERIOR Y AGREGAR LO SIGUIENTE */

/* CONTENEDOR DE TEXTO A LA IZQUIERDA */
.contenedor-texto.izquierda {
  position: absolute;
  top: 50%;
  left: 100px; /* Posición desde la izquierda */
  transform: translateY(-50%);
  width: 100%;
  max-width: 800px;
  text-align: left; /* Texto alineado a la izquierda */
  z-index: 10;
  padding: 40px;
}

/* LOGO POSICIONADO MEJOR */
.logo-banner {
  width: 180px !important;
  height: 180px !important;
  object-fit: contain !important;
  margin: auto; /* Quitado auto para alinear a la izquierda */
  display: block;
  animation:
    entradaLogo 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
    flotarLogo 6s ease-in-out infinite 1.5s;
  opacity: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}



/* NUEVAS ANIMACIONES VARIADAS */
.animacion-flip {
  animation: flipIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  transform-origin: center;
}

@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: rotateY(-10deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) scale(1);
  }
}

.animacion-zoom-in {
  animation: zoomIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  transform: scale(0.3) !important;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animacion-zoom-out {
  animation: zoomOut 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  transform: scale(1.5) !important;
}

@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  70% {
    opacity: 1;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animacion-bounce {
  animation: bounceIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(20px);
  }
  70% {
    transform: scale(0.95) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animacion-rotate {
  animation: rotateIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  transform-origin: center;
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  70% {
    opacity: 1;
    transform: rotate(10deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.animacion-pulse {
  animation: pulseIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

@keyframes pulseIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}

.animacion-fade {
  animation: fadeIn 1.5s ease-out forwards !important;
  animation-delay: 0.5s !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animacion-fade-up {
  animation: fadeUp 1.5s ease-out forwards !important;
  animation-delay: 0.5s !important;
  transform: translateY(50px) !important;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animacion-slide-left {
  animation: slideLeft 1.5s ease-out forwards !important;
  animation-delay: 0.5s !important;
  transform: translateX(100px) !important;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animacion-slide-right {
  animation: slideRight 1.5s ease-out forwards !important;
  animation-delay: 0.5s !important;
  transform: translateX(-100px) !important;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BOTÓN DE MATRÍCULA */
.btn-matricula {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: linear-gradient(135deg, #285e3a 0%, #1e7e34 100%);
  color: white;
  text-decoration: none;
  padding: 20px 35px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  z-index: 15;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 215, 0, 0.3),
    0 0 20px rgba(40, 94, 58, 0.6);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  border: 2px solid #ffd700;
}

.btn-matricula:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(255, 215, 0, 0.5),
    0 0 30px rgba(40, 94, 58, 0.8);
  background: linear-gradient(135deg, #1e7e34 0%, #285e3a 100%);
}

.btn-matricula:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.btn-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-subtext {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  font-style: italic;
}

.btn-icon {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-matricula:hover .btn-icon {
  right: -30px;
  opacity: 1;
}

/* EFECTO DE BRILLO EN BOTÓN */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
  z-index: 1;
}

.btn-matricula:hover .btn-shine {
  left: 100%;
}

/* GRADIENTE TRANSPARENTE PARA EL BOTÓN */
.btn-matricula::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  border-radius: 18px;
  z-index: 1;
}

/* RESPONSIVE PARA BOTÓN */
@media (max-width: 992px) {
  .btn-matricula {
    min-width: 250px;
    padding: 15px 25px;
    bottom: 40px;
    right: 40px;
  }
  .btn-text {
    font-size: 1.5rem;
  }
  .contenedor-texto.izquierda {
    left: 50px;
    width: 70%;
  }
}

@media (max-width: 768px) {
  .btn-matricula {
    min-width: 200px;
    padding: 12px 20px;
    bottom: 30px;
    right: 30px;
    font-size: 1.1rem;
  }
  .btn-text {
    font-size: 1.3rem;
  }
  .contenedor-texto.izquierda {
    left: 30px;
    width: 80%;
    padding: 20px;
  }
  .texto-grande {
    font-size: 3rem !important;
  }
  .texto-mediano {
    font-size: 1.8rem !important;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .btn-matricula {
    position: relative;
    margin: 20px auto;
    bottom: auto;
    right: auto;
    width: 90%;
    display: block;
  }
  .contenedor-texto.izquierda {
    left: 20px;
    width: 90%;
    padding: 15px;
  }
  .texto-grande {
    font-size: 2.2rem !important;
  }
  .texto-mediano {
    font-size: 1.4rem !important;
  }
}




/* MARCO DE MATRÍCULA */
.marco-matricula {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: linear-gradient(135deg, 
        rgba(40, 94, 58, 0.95) 0%, 
        rgba(30, 126, 52, 0.9) 100%);
    border: 3px solid #5aeb55;
    border-radius: 20px;
    padding: 20px 25px;
    z-index: 15;
    min-width: 320px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* CONTENIDO DEL MARCO */
.marco-contenido {
    position: relative;
    z-index: 2;
}

/* TÍTULO DEL MARCO */
.marco-titulo {
    color: #fddc22;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* TEXTO DEL MARCO */
.marco-texto {
    color: white;
    font-size: 1.1rem;
    margin: 10px 0;
    text-align: center;
    line-height: 1.4;
    opacity: 0.95;
}

/* BOTÓN DE INFORMACIÓN */
.btn-informacion {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #285e3a;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px auto 10px;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 215, 0, 0.5);
    min-width: 200px;
}

.btn-informacion:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-informacion:active {
    transform: translateY(-1px);
}

/* TEXTO DEL BOTÓN */
.btn-texto {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-right: 10px;
}

/* ICONO DEL BOTÓN */
.btn-icono {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-informacion:hover .btn-icono {
    transform: translateX(5px);
}

/* EFECTO DE BRILLO EN EL BOTÓN */
.btn-brillo {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.btn-informacion:hover .btn-brillo {
    left: 100%;
}

/* DECORACIÓN DEL MARCO */
.marco-decoracion {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 100%
    );
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .marco-matricula {
        bottom: 40px;
        right: 40px;
        min-width: 280px;
        padding: 20px 25px;
    }
    
    .marco-titulo {
        font-size: 1.6rem;
    }
    
    .marco-texto {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .marco-matricula {
        bottom: 30px;
        right: 30px;
        min-width: 250px;
        padding: 18px 20px;
    }
    
    .marco-titulo {
        font-size: 1.4rem;
    }
    
    .marco-texto {
        font-size: 0.95rem;
    }
    
    .btn-informacion {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .marco-matricula {
        position: relative;
        margin: 20px auto;
        bottom: auto;
        right: auto;
        width: 90%;
        display: block;
    }
}


/* Animación de entrada del marco */
@keyframes entradaMarco {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.marco-matricula {
    animation: entradaMarco 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Efecto de latido para el botón */
@keyframes latidoBtn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-informacion {
    animation: latidoBtn 2s ease-in-out infinite;
}