:root {
    --primary-gradient: linear-gradient(135deg, #FFD700, #FFA500);
    --card-bg: rgba(30, 30, 36, 0.8);
    --border-color: rgba(255, 165, 0, 0.3);
}

.confirmation-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 900px;
}

.section-title {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card {
    background: rgba(40, 40, 48, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(50, 50, 60, 0.3);
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon img {
    max-width: 30px;
    height: auto;
}

.contact-content {
    flex-grow: 1;
}

.form-control {
    background: rgba(50, 50, 60, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    width: 100%;
}

.form-control:focus {
    background: rgba(60, 60, 70, 0.8);
    border-color: #FFA500;
    box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.25);
    color: #fff;
}

.form-text {
    color: #adb5bd;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.order-card {
    background: rgba(40, 40, 48, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.order-item {
    background: rgba(50, 50, 60, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #FFA500;
}

.order-label {
    color: #FFA500;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.order-value {
    color: #fff;
    font-size: 1rem;
}

.btn-confirm {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.btn-back {
    background: transparent;
    border: 2px solid #FFA500;
    color: #FFA500;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-back:hover {
    background: #FFA500;
    color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
    .confirmation-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .contact-icon {
        align-self: flex-start;
    }
    
    .order-grid {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-confirm, .btn-back {
        width: 100%;
    }
}