.container {
  display: flex;
  justify-content: space-around;
  background-color: #b3d9ff;
  padding: 20px;
}

.data-box1 {
    color: #d38c30;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data-box2 {
    color: #f11136;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data-box3 {
    color: #0da82f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label {
  background-color: #a3bffa;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.value {
  background-color: #c1e0fc;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button {
  background-color: #6ba8e0;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #8ab4e6;
}

.updated {
  background-color: #c1e0fc;
  padding: 5px 10px;
  margin-top: 20px;
  align-self: center;
  border-radius: 10px;
}





/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b419e;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 0.5rem;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo span {
    color: #00b7b5;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #00b7b5;
}


/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 1rem;
    background-color: #e0e0e0;
    margin: 1rem;
    border-radius: 8px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    line-height: 1.5rem;
}


/* Media Queries para responsividad */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


    footer {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 200px;
    }

    .hero-text {
        font-size: 0.8rem;
    }
}
