 /* Mesmos estilos anteriores aqui... */
 body {
     margin: 0;
     padding: 0;
     font-family: "Segoe UI", sans-serif;
     background: url("bg.jpg") no-repeat center center fixed;
     background-size: cover;
     background-attachment: fixed;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 40px 20px;
     color: #fff;
     min-height: 100vh;
 }

 @media (min-width: 769px) {
     body {
         background-position: center top;
     }
 }

 .container {
     max-width: 1000px;
     /* maior largura para suportar vela + formulário */
     margin: 0 auto;
 }

 h1 {
     font-size: 2.8rem;
     margin-bottom: 10px;
     text-shadow: #000 1px 1px 2px;
 }

 h2 {

     font-size: 1.5rem;
     margin-bottom: 5px;
     color: yellow;
 }

 h3 {
     font-size: 1.4rem;
     font-weight: normal;
     margin-bottom: 25px;
 }


 p {
     font-size: 1.1rem;
     margin-bottom: 15px;
     line-height: 1.5;
     text-shadow: #000 1px 1px 2px;
 }

 form {
     width: 100%;
     max-width: 400px;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 input[type="text"],
 input[type="email"] {
     padding: 12px;
     border: 1px solid #d8c2aa;
     border-radius: 10px;
     font-size: 1rem;
 }

 button {
     padding: 14px;
     background-color: #614611;
     text-shadow: 1px 1px 2px #2b2300;
     color: white;
     font-weight: bold;
     font-size: 1rem;
     border: solid 2px #aa7400;
     border-radius: 10px;
     cursor: pointer;
     transition: background 0.3s;
 }

 button:hover {
     background-color: #aa7d22;
 }

 @keyframes pulsar {
     0% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(180, 146, 95, 0.5);
     }

     70% {
         transform: scale(1.05);
         box-shadow: 0 0 10px 10px rgba(180, 95, 95, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(180, 95, 95, 0);
     }
 }

 .botao-pulsar {
     background-color: #614611;
     border: solid 2px #aa7400;
     color: #fff;
     padding: 1rem 1.5rem;
     font-size: 1rem;
     border-radius: 6px;
     cursor: pointer;
     animation: pulsar 2s infinite;
     transition: transform 0.2s;
 }

 .botao-pulsar:hover {
     transform: scale(1.06);
 }

 .checkbox {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     font-size: 0.7rem;
     text-align: left;
 }

 .checkbox input {
     margin-top: 3px;
 }

 footer {
     margin-top: 50px;
     font-size: 0.8rem;
     color: #c7b29e;
 }

 #g_id_onload,
 .g_id_signin {
     display: flex;
     justify-content: center;
 }

 a {
     color: #fff;
 }


 .content-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 5px;
     flex-wrap: wrap;
     background-color: rgba(0, 0, 0, 0.5);
     /* preto com 50% de transparência */
     border-radius: 20px;
     padding: 10px;
     max-width: 800px;
     margin: 0 auto;
 }

 #efeitoLuz {
     position: absolute;
     top: 50px;
     /* <-- Aqui é a chave! */
     left: 50%;
     width: 160px;
     height: 160px;
     background: radial-gradient(circle, rgba(248, 231, 132), rgba(255, 180, 0, 0) 70%);
     border-radius: 50%;
     transform: translate(-50%, -50%) scale(0);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.6s ease, transform 0.6s ease;
     z-index: 5;
 }


 .vela-img {
     position: relative;
 }


 .vela-img img {
     width: 150px;
     max-width: 100%;
     height: auto;
     transition: opacity 1.2s ease;
 }

 .fade-in {
     opacity: 0;
     animation: aparecerSuave 1.2s ease forwards;
 }

 @keyframes aparecerSuave {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 .google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #3c4043;
    cursor: pointer;
    font-family: "Google Sans", arial, sans-serif;
    font-size: 14px;
    text-align: center !important;
    white-space: nowrap;
    border: 1px solid #dadce0;   
    height: 40px;
    outline: none;
    letter-spacing: 0.25px;
    vertical-align: middle;
    width: auto;
    position: relative;
    padding: 0 12px;
    border-radius: 4px;
    text-decoration: none;

 }



 .google-button-wrap .g_id_signin {
     width: 100% !important;
     display: block !important;
 }

 .google-button-wrap>div {
     width: 100% !important;
 }

 

 /*MOBILE*/
 @media (max-width: 768px) {

     body {
         background-attachment: scroll !important;
         background-size: cover !important;
         background-repeat: no-repeat !important;
         background-position: center top !important;
     }

     .content-wrap {
         flex-direction: column;
     }

     .vela-img img {
         width: 70px !important;
     }

     .vela-img {
         order: -1;

     }

     h1 {
         font-size: 2rem;
     }

     p {
         font-size: 1.2rem;
         line-height: 1.5rem;
     }

     #efeitoLuz {
         position: absolute;
         top: 20px;
         /* <-- Aqui é a chave! */

     }

 }