        /* Reset e estilos base */
        * {
            margin: 0;
            padding: 0;
           
        }

        .container_form {
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 15px;
            padding: 40px;
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .container_form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #ff6f61;
            font-size: 2.2em;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #ff6f61;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        h2 i {
            margin-right: 12px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            font-weight: 600;
            color: #555;
            display: block;
            margin-bottom: 8px;
            position: relative;
            padding-left: 30px;
        }

        label i {
            position: absolute;
            left: 0;
            top: 2px;
            color: #ff6f61;
            font-size: 1.1em;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            outline: none;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95em;
            background: #f9f9f9;
        }

        input:focus, select:focus, textarea:focus {
            border-color: #ff6f61;
            box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.2);
            background: #fff;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .radio-group {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-top: 10px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .radio-option input {
            width: auto;
        }

        .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
        }

        .form-check input {
            width: auto;
        }

        .full-width {
            grid-column: span 2;
        }

        .btn-submit {
            grid-column: span 2;
            padding: 16px;
            background: linear-gradient(135deg, #ff6f61, #e64b48);
            color: #fff;
            font-weight: bold;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1em;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, #e64b48, #cc3a3a);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 75, 72, 0.3);
        }

        .btn-submit:active {
            transform: translateY(1px);
        }

        fieldset {
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            grid-column: span 2;
            transition: all 0.3s;
        }

        fieldset:hover {
            border-color: #ff6f61;
        }

        legend {
            padding: 0 15px;
            color: #ff6f61;
            font-weight: 700;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        legend i {
            font-size: 1.2em;
        }

        .text-muted {
            font-size: 0.85em;
            color: #777;
            margin-top: 8px;
            font-style: italic;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: slideUp 0.4s;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal h3 {
            color: #ff6f61;
            margin-bottom: 20px;
            font-size: 1.8em;
        }

        .modal p {
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .btn-whatsapp {
            display: inline-block;
            padding: 14px 25px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: 15px;
            border: none;
            cursor: pointer;
            font-size: 1em;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
        }

        .btn-whatsapp i {
            margin-right: 10px;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8em;
            color: #888;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #ff6f61;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .container {
                padding: 25px;
                margin: 20px auto;
            }
            
            form {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .full-width, fieldset {
                grid-column: span 1;
            }
            
            h2 {
                font-size: 1.8em;
            }
            
            input, select, textarea {
                padding: 12px;
            }
        }

        /* Efeitos extras */
        .success-message {
            display: none;
            background: #4CAF50;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
            animation: fadeIn 0.5s;
        }

        .progress-bar {
            height: 5px;
            background: #ff6f61;
            width: 0%;
            border-radius: 5px;
            margin-top: -20px;
            transition: width 0.5s ease;
        }

        /* Animações */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        .shake {
            animation: shake 0.5s;
        }