* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Source+Sans+Pro:wght@400;600;700&display=swap');
 
        :root {
            --primary: #1a3a52;
            --secondary: #d4a574;
            --accent: #f5f5f5;
            --light-gray: #e8e8e8;
            --dark-text: #2c3e50;
            --border: #d0d0d0;
        }
 
        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: var(--dark-text);
        }
 
        .container {
            width: 100%;
            max-width: 600px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }
 
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
 
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
 
        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: white;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
 
        .header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
 
        .form-wrapper {
            padding: 45px 40px;
        }
 
        .form-group {
            margin-bottom: 28px;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
 
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
        .form-group:nth-child(6) { animation-delay: 0.6s; }
 
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--primary);
        }
 
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="file"],
        textarea,
        select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 14px;
            color: var(--dark-text);
            background: white;
            transition: all 0.3s ease;
        }
 
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="file"]:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
            background: rgba(212, 165, 116, 0.02);
        }
 
        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Source Sans Pro', sans-serif;
        }
 
        .file-input-wrapper {
            position: relative;
            cursor: pointer;
        }
 
        input[type="file"] {
            cursor: pointer;
            padding: 12px 16px;
        }
 
        .file-input-wrapper::after {
            content: '📎 Clique para selecionar arquivo';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: var(--secondary);
            pointer-events: none;
        }
 
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
 
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }
 
        input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--secondary);
        }
 
        .checkbox-group label {
            margin: 0;
            text-transform: none;
            letter-spacing: normal;
            font-weight: 400;
            font-size: 13px;
        }
 
        .submit-btn {
            width: 100%;
            padding: 16px;
            margin-top: 15px;
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 58, 82, 0.2);
            font-family: 'Source Sans Pro', sans-serif;
        }
 
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 58, 82, 0.3);
        }
 
        .submit-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(26, 58, 82, 0.2);
        }
 
        .info-text {
            font-size: 12px;
            color: #7f8c8d;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
 
        .info-text::before {
            content: 'ℹ';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            font-size: 10px;
        }
 
        @media (max-width: 600px) {
            .form-wrapper {
                padding: 30px 20px;
            }
 
            .header {
                padding: 35px 20px;
            }
 
            .header h1 {
                font-size: 24px;
            }
 
            .form-row {
                grid-template-columns: 1fr;
            }
 
            .form-group {
                margin-bottom: 20px;
            }
        }