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

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



   nav {
       display: flex;
       align-items: center;
       padding-top: 30px;
   }

   nav h3 {
       width: 1000px;
   }

   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;
   }

   .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);
   }


   .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%;
   }

   .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;
   }

h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
}
/*
Modal
*/

  #modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            right: 0;
            top: 0;
            height: 100%;
            width: 100%;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.6);
        }


        #modal-content {
            background-color: #ffffff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            animation: zoomIn 0.3s ease-out;
        }

        .close-btn {
            color: #aaa;
            font-size: 2rem;
            /* 32px */
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
            
        }

        .indicar-musica-btn {
            padding: 12px 24px;
            background-color: #1a73e8;
            /* Azul */
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            display: block;
            margin: 20px auto;
            /* Apenas para centralizar o botão de exemplo */
            transition: all 0.2s;
        }

        .submit-btn {
            width: 100%;
            padding: 0.85rem;
            background-color: #1a73e8;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }





        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #555;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-sizing: border-box;
            font-size: 1rem;
        }

   .indicar-musica-section {
       text-align: center;
       padding: 50px ;
       margin: 0 auto;
       border-radius: 15px;
       max-width: 900px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
   }

   .indicar-musica-section h2 {
       color: #053775;
       font-size: 2.2em;
       margin-bottom: 15px;
   }

   .indicar-musica-section p {
       color: #555;
       font-size: 1.1em;
       margin-bottom: 30px;
   }

   .btn-indicar {
       background-color: #0066ff;
       /* Verde vibrante */
       color: white;
       padding: 15px 20px;
       border: none;
       border-radius: 8px;
       font-size: 1.2em;
       cursor: pointer;
       transition: all 0.3s;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }

   .btn-indicar:hover {
       background-color: #00a9ec;
       transform: translateY(-2px);
   }