        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }

        .btn:hover {
            background-color: #3588db;
        }

        header {
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 30px;
        }

        nav ul {
            display: flex;
            align-items: center;
        }

        nav ul a {
            color: white;
            margin: 0 25px;
            text-transform: uppercase;
            font-size: 14px;
        }

        nav ul a:hover {
            text-decoration: underline red;
            text-underline-offset: 2px;
            text-decoration-thickness: 2px;
            transition: all 0.2s red;
        }
.img-usu {
    width: 40px;
    cursor: pointer;
    margin-left: 4px;
}

.img-usu:hover {
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}
        .logo {
            color: white;
            font-size: 45px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }


        .btn:hover {
            text-decoration: none;
        }

        section,
        footer {
            padding: 54px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .btn {
            background-color: #10509e;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            cursor: pointer;
            display: inline-block;
            transition: 0.1s;
        }

        .btn:hover {
            text-decoration: none;
            background-color: white;
            color: black;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }




        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 30px;
        }

        nav ul {
            display: flex;
            align-items: center;
        }

        nav ul a {
            color: white;
            margin: 0 25px;
            text-transform: uppercase;
            font-size: 14px;
        }

h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
}
        .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin: 60px auto;
            max-width: 1200px;
        }

        .card {
            background: white;
            border-radius: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
            width: 280px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .card:hover {
            transform: translateY(-4px);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card-content {
            padding: 20px;
            text-align: center;
        }

        .card-content .h3 {
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .btn-votar {
            background-color: #053775;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            display: inline-block;
            transition: 0.2s;
        }

        .btn-votar:hover {
            background-color: #3588db;
        }