body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0e6d2d 0%, #005ea7 100%);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #f9fefe;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  padding: 2.5rem;
  max-width: 300px;
  width: 90%;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  position: relative;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.2rem;
}

h1 {
  color: #006e6d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

p {
  color: #508ecb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.link-docs {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #00b894;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.link-docs:hover {
  background-color: #019170;
}

.link-docs i {
  margin-left: 8px;
}

.link-prueba {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #00b894;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.link-prueba:hover {
  background-color: #019170;
}

.link-prueba i {
  margin-left: 8px;
}

.footer-link {
  color: #00b894;
  text-decoration: none;
  font-weight: bold;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bubbles span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatBubbles 10s linear infinite;
  bottom: -150px;
}

.bubbles span:nth-child(1) {
  left: 10%;
  width: 50px;
  height: 50px;
  animation-delay: 0s;
}

.bubbles span:nth-child(2) {
  left: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.bubbles span:nth-child(3) {
  left: 30%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

.bubbles span:nth-child(4) {
  left: 40%;
  width: 36px;
  height: 36px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.bubbles span:nth-child(5) {
  left: 50%;
  width: 56px;
  height: 56px;
  animation-delay: 3s;
}

.bubbles span:nth-child(6) {
  left: 60%;
  width: 44px;
  height: 44px;
  animation-delay: 5s;
}

.bubbles span:nth-child(7) {
  left: 70%;
  width: 32px;
  height: 32px;
  animation-delay: 1s;
  animation-duration: 14s;
}

.bubbles span:nth-child(8) {
  left: 80%;
  width: 40px;
  height: 40px;
  animation-delay: 6s;
}

.bubbles span:nth-child(9) {
  left: 90%;
  width: 52px;
  height: 52px;
  animation-delay: 2s;
}

.bubbles span:nth-child(10) {
  left: 100%;
  width: 28px;
  height: 28px;
  animation-delay: 4s;
}

.bubbles span:nth-child(11) {
  left: 15%;
  width: 60px;
  height: 60px;
  animation-delay: 8s;
}

.bubbles span:nth-child(12) {
  left: 25%;
  width: 48px;
  height: 48px;
  animation-delay: 10s;
}

.bubbles span:nth-child(13) {
  left: 35%;
  width: 36px;
  height: 36px;
  animation-delay: 12s;
}

.bubbles span:nth-child(14) {
  left: 45%;
  width: 44px;
  height: 44px;
  animation-delay: 14s;
}

.bubbles span:nth-child(15) {
  left: 55%;
  width: 40px;
  height: 40px;
  animation-delay: 16s;
}

.bubbles span:nth-child(16) {
  left: 65%;
  width: 52px;
  height: 52px;
  animation-delay: 18s;
}

.bubbles span:nth-child(17) {
  left: 75%;
  width: 56px;
  height: 56px;
  animation-delay: 20s;
}

.bubbles span:nth-child(18) {
  left: 85%;
  width: 32px;
  height: 32px;
  animation-delay: 22s;
}

.bubbles span:nth-child(19) {
  left: 95%;
  width: 40px;
  height: 40px;
  animation-delay: 24s;
}

.bubbles span:nth-child(20) {
  left: 5%;
  width: 48px;
  height: 48px;
  animation-delay: 26s;
}

@keyframes floatBubbles {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-1000px) scale(1.2);
    opacity: 0;
  }
}

.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.toggle-footer-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #00b894;
    border: none;
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.toggle-footer-btn:hover {
     background-color: #019170;
}

.mini-footer {
  max-width: 300px;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.mini-footer a {
  color: #003344; 
  text-decoration: none;
  font-weight: 600;
}

.mini-footer a:hover {
  text-decoration: underline;
}

.footer-text {
  color: white;
  font-size: 14px;
  margin: 0;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-texto {
  color: white;
}


