body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: white;
    color: black;
    padding: 20px;
    text-align: center;
    display: flex;
}
header div label{
    display: flex;
}

header h1 {
    margin: 0;
    font-size: 24px;
    align-self: center;
    font-family: 'Lato';
}
header div{
    background-color: white;
    display: flex;
    margin: auto;
    padding: 5 10px 15px;
}

nav {
    background-color: #003d80;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}


nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #004494;
}


article{
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.plantilla{
    text-align: center;
    width: 100%;
}
.barra-buscar{
    margin-left: 150px;
}
.alinear-derecha{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 5px;
    cursor: pointer;
}
.alinear-izquierda{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    gap: 5px;
    width: auto;
}
#iconos i {
    color: grey;
   font-size: 30px;
}
#iconos a :hover{
    color: blue;
}
#ultimo-icono i{
    color: grey;
    font-size: 30px;
}
#ultimo-icono a :hover{
    color: blue;
}

#iconos {
    gap: 10px;
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.card p {
    color: gray;
    margin: 5px 0;
}

.card button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #004494;
}

.iconos-redes {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.iconos-redes img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.iconos-redes img:hover {
    transform: scale(1.5);
}
.btn-listo button {
    background-color: #0E70BC;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    margin-left: 150px;
    cursor: pointer;
}
.btn-listo {
    margin-bottom: 80px;

}

footer {
    background-color: rgba(4, 0, 255, 0.8); 
    color: white;
    text-align: center;
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    transition: background-color 0.3s; 
}

footer.transparent {
    background-color: rgba(4, 0, 255, 0); 
}

div label img {
    width: 50px;
    height: 50px;
}