.elementor-kit-9{--e-global-color-primary:#F9F9F9;--e-global-color-secondary:#F9F9F9;--e-global-color-text:#FFFFFF;--e-global-color-accent:#518EFF;--e-global-color-fda999b:#1A1A1A;--e-global-color-4679d4e:#6C6C6C;--e-global-color-402569f:#0C0B0B;--e-global-color-98ba3f3:#407AE6;--e-global-color-285bade:#0D40A1;--e-global-color-a704121:#FFFFFF;--e-global-color-38c32b4:#1D299C;--e-global-typography-primary-font-family:"Sora";--e-global-typography-primary-font-size:4em;--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Sora";--e-global-typography-secondary-font-weight:700;--e-global-typography-text-font-family:"Sora";--e-global-typography-text-font-size:1em;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Sora";--e-global-typography-accent-font-size:1em;--e-global-typography-accent-font-weight:700;background-color:#101010;}.elementor-kit-9 e-page-transition{background-color:transparent;background-image:linear-gradient(180deg, #061D49 0%, #061D498A 100%);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Formulário Estilo Typeform</title>
    <style>
        /* Estilo dos botões de rádio */
        .radio-custom {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            display: inline-block;
            cursor: pointer;
            font-size: 18px;
            line-height: 1.2;
            color: #333;
            user-select: none;
        }
        .radio-custom input[type="radio"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        .radio-custom:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #333;
            border-radius: 5px;
            background-color: #fff;
            transition: 0.3s;
        }
        .radio-custom input[type="radio"]:checked + .radio-custom:before {
            background-color: #0073e6;
            animation: pulsate 1s infinite;
        }
        @keyframes pulsate {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
    </style>
</head>
<body>

<div class="elementor-field-group">
    <label class="radio-custom">
        <input type="radio" name="opcao" value="1"> Opção 1
    </label>
    <label class="radio-custom">
        <input type="radio" name="opcao" value="2"> Opção 2
    </label>
    <label class="radio-custom">
        <input type="radio" name="opcao" value="3"> Opção 3
    </label>
</div>

<script>
    document.addEventListener('DOMContentLoaded', function() {
        // Adiciona eventos para os botões de rádio para acionar a animação de pulso
        const radios = document.querySelectorAll('.radio-custom input[type="radio"]');
        
        radios.forEach(radio => {
            radio.addEventListener('change', function() {
                radios.forEach(r => r.closest('.radio-custom').classList.remove('selected'));
                if (radio.checked) {
                    radio.closest('.radio-custom').classList.add('selected');
                }
            });
        });
    });
</script>

</body>
</html>/* End custom CSS */