:root {
            --blue-navy: #0d2a54;
            --blue-light: #1a4a8e;
        }
        * {
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-light) 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 680px;
            margin: 0 auto;
        }
        
        .main-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--blue-navy), var(--blue-light));
            padding: 30px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .card-header h2 {
            font-weight: 700;
            font-size: 2rem;
            margin: 0;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .card-header p {
            margin: 10px 0 0;
            opacity: 0.9;
            font-size: 0.9rem;
            position: relative;
        }
        
        .card-body {
            padding: 40px;
        }
        
        .form-label {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            padding: 12px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--blue-light);
            box-shadow: 0 0 0 3px rgba(26, 74, 142, 0.1);
            outline: none;
        }
        
        /* Camera Section */
        .camera-section {
            background: #f7fafc;
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            border: 2px dashed #cbd5e0;
        }
        
        .camera-container {
            display: none;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .camera-preview {
            width: 100%;
            height: 280px;
            background: #1a202c;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            border: 3px solid #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        #video, #canvas {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        #canvas {
            display: none;
        }
        
        .foto-preview-container {
            width: 100%;
            margin-bottom: 15px;
            display: none;
        }
        
        .foto-preview {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 15px;
            border: 3px solid #48bb78;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-capture {
            background: linear-gradient(135deg, var(--blue-navy), var(--blue-light));
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(13, 42, 84, 0.4);
            transition: all 0.3s ease;
            margin: 5px;
        }
        
        .btn-capture:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 42, 84, 0.6);
        }
        
        .btn-camera {
            background: #2d3748;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin: 5px;
        }
        
        .btn-camera:hover {
            background: #1a202c;
        }
        
        .btn-upload {
            background: #4a5568;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin: 5px;
            cursor: pointer;
        }
        
        .btn-upload:hover {
            background: #2d3748;
        }
        
        .btn-reset {
            background: #718096;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin: 5px;
        }
        
        .btn-reset:hover {
            background: #4a5568;
        }
        
        .foto-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #48bb78;
        }
        
        .price-alert {
            background: linear-gradient(135deg, #fef9e7, #fdf2d0);
            border: none;
            border-radius: 20px;
            padding: 20px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
            color: #7b5c00;
        }
        
        .price-alert::before {
            content: '🚢';
            position: absolute;
            right: -10px;
            bottom: -10px;
            font-size: 80px;
            opacity: 0.1;
            transform: rotate(15deg);
        }
        
        .price-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a67c00;
            font-weight: 600;
        }
        
        .price-value {
            font-size: 3rem;
            font-weight: 800;
            color: #1a202c;
            line-height: 1;
            margin-top: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 50px;
            padding: 18px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
            color: white;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
            margin-bottom: 15px;
        }
        
        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
            color: white;
        }
        
        .btn-whatsapp i {
            font-size: 1.5rem;
        }
        
        .whatsapp-numbers {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .whatsapp-badge {
            background: #25D366;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .whatsapp-badge i {
            font-size: 1rem;
        }
        
        .info-text {
            text-align: center;
            color: #718096;
            font-size: 0.85rem;
            margin-top: 20px;
        }
        
        .input-icon {
            position: relative;
        }
        
        .input-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 1.2rem;
        }
        
        .input-icon input {
            padding-left: 45px;
        }
        
        .row.gap-3 {
            margin: 0 -10px;
        }
        
        .row.gap-3 > [class*="col-"] {
            padding: 0 10px;
        }
        
        .idade-display {
            font-size: 0.85rem;
            color: #2d3748;
            margin-top: 5px;
            font-weight: 500;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .card-body {
                padding: 25px;
            }
            
            .price-value {
                font-size: 2.5rem;
            }
            
            .btn-whatsapp {
                font-size: 1rem;
                padding: 15px;
            }
            
            .btn-capture, .btn-camera, .btn-upload, .btn-reset {
                width: 100%;
                margin: 5px 0;
            }
        }
