    #Body {
        font-family: Arial, sans-serif;
        background-color: #fffff1;
        display: flex;
        align-items: center;
        justify-content: center; /* Centraliza verticalmente */
        margin: 0 auto;
        flex-direction: column;
        padding: 20px;
        margin: 0 auto;
        -webkit-font-smoothing: antialiased; /* Melhor renderização no WebKit */
        -moz-osx-font-smoothing: grayscale;
    }
    .Text-Container {
        display: flex;
        justify-content: center;
        max-width: 720px;
        min-width: 320px;
        width: 100%;
    }
    .Text-Form {
        flex-direction: column;
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        align-items: stretch;
        box-sizing: border-box;
        text-align: center;
    }
    .Text-H1  {
        font-size: clamp(18px, 6.25vw, 45px);
        font-weight: bold;
        line-height: 1.1;
        margin: 20px 0 10px 0;
    }
    section h3 {
        font-size: clamp(14px, 2.222222222222222vw, 16px);
        font-weight: normal;
        line-height: 1.1;
        margin: 10px 0 40px 0;
    }
    .form-container {
        display: flex;
        justify-content: center;
        max-width: 720px;
        min-width: 320px;
        width: 100%;
        background-color: #e4e0d6;
        border-radius: clamp(15px, 3.47vw, 25px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* WebKit fallback */
    }
    .form {
        padding: clamp(25px, 4.166666666666667vw, 30px);
        flex-direction: column;
        display: flex;
        flex-wrap: nowrap; /* Impede quebra de linha */
        gap: 15px;
        width: 100%; /* Largura total */
        align-items: stretch;
        box-sizing: border-box;
        transition: transform 0.3s ease;
        -webkit-transition: -webkit-transform 0.3s ease;
        overflow-x: hidden; 
    }
    .TextH2 {
        font-size: clamp(13px, 2.222222222222222vw, 16px);
        margin: clamp(15px, 2.77vw, 20px) 0;
        color: #111;
        font-weight: bold;
    }
    .Escolha {
        font-weight: lighter;
        font-size: clamp(12px, 1.94vw, 14px);
        color: #736f64;
    }
    .Escolha-Selecione {
        font-weight: lighter;
        font-size: clamp(12px, 2.222222222222222vw, 16px);
        color: #000;
    }
    label {
        display: block;
        margin: 0;
        font-weight: 600;
        -webkit-user-select: none; /* Evita seleção acidental no iOS */
    }
    input[type="email"], 
    input[type="text"]:not([name="Produtos-outros"]), /* Aplica a inputs text que não são o 'outros' */
    input[type="tel"] {
        width: 90%;
        padding: clamp(14px, 2.5vw, 18px);
        margin: 0;
        border: none;
        border-radius: 10px;
        font-size: clamp(12px, 2.5vw, 18px);
        outline: none;
        -webkit-appearance: none;
    }
    .options {
        margin: 0;
    }
    input[type="text"][name="Produtos-outros"] { /* Estilo para o input de linha */
        background-color: #e4e0d6;
        border: none;
        width: 50%;
        border-bottom: 1px solid #333;
        padding: 5px 5px 0 5px; 
        font-size: clamp(12px, 1.9vw, 14px);
        outline: none;
        transition: border-color 0.3s ease;
        line-height: 1.2;
        -webkit-transition: border-color 0.3s ease;
    }
    .options label {
        font-weight: normal;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        cursor: pointer;
        color: #636059;
        -webkit-tap-highlight-color: transparent; /* Evita flash azul no iOS */
    }
    .options input {
        margin-right: 8px;
    }
    input[type="checkbox"], input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        min-width: 20px;
        width: 20px;
        min-height: 20px;
        height: 20px;
        background-color: #fff;
        border: 2px solid #666;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        cursor: pointer;
        vertical-align: middle;
        -webkit-transition: all 0.2s ease;
        margin-right: 8px;
        transition: all 0.2s ease;
    }
    input[type="checkbox"]:checked,
    input[type="radio"]:checked {
        border-color: #000;
        background-color: #000;
    }
    input[type="checkbox"]:checked::after,
    input[type="radio"]:checked::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
    } 
    .form-buttons {
        width: 100%;
        display: flex;
        justify-content: center; 
        align-items: center;
        margin-top: 30px;
    }
    .form-buttons button {
        width: 100%;
        max-width: 200px;
        flex: 1;
        padding: 12px 30px; 
        border: none;
        border-radius: 25px;
        font-size: 18px;
        cursor: pointer;
        -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    }
    .submit {
        background: #e41f17;
        color: #fff;
    }
    .submit:hover {
        background: #ff0000;
        color: #fff;
    }
    @media (max-width: 700px) {
        .None {
            display: none;
        }
    }