 .grecaptcha-badge {
     z-index: 1000;
     /* garante que fique acima de outros elementos */
     bottom: 40px !important;
 }

 .recaptcha-wrapper {
     width: 100%;
     overflow-x: auto;
     display: flex;
     justify-content: center;
 }

 .recaptcha-scale {
     transform: scale(0.85);
     transform-origin: top left;
     -webkit-transform: scale(0.85);
     -webkit-transform-origin: top left;
     width: 302px;
     height: 78px;
     /* altura padrão do reCAPTCHA */
 }

 /* Escala ainda menor para telas ultraestreitas */
 @media (max-width: 400px) {
     .recaptcha-scale {
         transform: scale(0.65);
         -webkit-transform: scale(0.65);
     }
 }

 @media (max-width: 320px) {
     .recaptcha-scale {
         transform: scale(0.55);
         -webkit-transform: scale(0.55);
     }
 }