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

    .contactForm{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-input:placeholder-shown{
        padding-left: 24px;
    }
    .formulario-contato.form-container {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 600px;
        padding: 30px;
        margin: auto;
    }
    .form-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-size: 1.8em;
    }
    .form-group {
        margin-bottom: 20px;
        position: relative;
    }
    .form-label {
        font-size: 14px;
        display: block;
        margin-bottom: 8px;
        color: #434A54;
        font-weight: 400;
    }
    .form-input {
        width: 100%;
        padding: 23px 10px;
        border: 1px solid #C8D1E0;
        {% if formulario.estilo_campo == 'rounded' %}
        border-radius: 40px;
        {% else %}
        border-radius: 8px;
        {% endif %}
        transition: all 0.3s ease;
        font-size: 14px;
    }
    .form-input:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
    }
    .form-input.invalid {
        border-color: #ff4d4d;
    }
    .form-textarea {
        resize: vertical;
        min-height: 120px;
        max-height: 300px;
    }
    .error-message {
        color: #D70E3C;
        font-size: 0.8em;
        margin-top: 6px;
        display: none;
        position: absolute;
    }
    .error-message.show {
        display: block;
    }
    .form-button {
        width: 100%;
        padding: 14px;
        background-color: #4a90e2;
        color: white;
        border: none;
        {% if formulario.estilo_campo == 'rounded' %}
        border-radius: 40px;
        {% else %}
        border-radius: 8px;
        {% endif %}
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 16px;
        font-weight: 600;
    }
    .form-button:hover {
        background-color: #357abd;
    }
    .form-button:disabled {
        background-color: #a0a0a0;
        cursor: not-allowed;
    }

    /* Responsividade */
    @media screen and (max-width: 600px) {
        .form-container {
            padding: 20px;
            margin: 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        }
        .form-title {
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        .form-input {
            padding: 23px 10px;
            font-size: 14px;
        }
        .form-button {
            padding: 12px;
        }
    }

    /* Ajustes para dispositivos menores */
    @media screen and (max-width: 380px) {
        .form-container {
            padding: 15px;
        }
        .form-title {
            font-size: 1.3em;
        }
        
    }